-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.83 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "refhiredcom-monorepo",
"private": true,
"version": "0.1.0",
"license": "MIT",
"author": {
"name": "Sayan De",
"twitter": "https://twitter.com/sayandedotcom",
"github": "https://github.com/sayandedotcom"
},
"description": "Root package.json for Monorepo of Refhired.com",
"repository": {
"type": "git",
"url": "https://github.com/sayandedotcom/refhired.com"
},
"packageManager": "yarn@1.22.19",
"workspaces": [
"apps/*",
"packages/*",
"packages/features/*"
],
"scripts": {
"sst:dev": "sst dev",
"sst:build": "sst build",
"sst:deploy": "sst deploy",
"sst:remove": "sst remove",
"sst:console": "sst console",
"typecheck": "tsc --noEmit",
"build": "turbo run build",
"dev": "dotenv -- turbo run dev",
"start": "turbo start",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"format": "turbo run format",
"format:check": "turbo run format:check",
"prepare": "husky install",
"postinstall": "prisma generate",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"dashboard": "yarn workspace @refhiredcom/dashboard",
"web": "yarn workspace @referrer/web",
"build:web": "dotenv -- turbo build --filter=web",
"mobile": "yarn workspace @refhiredcom/mobile",
"desktop": "yarn workspace @refhiredcom/desktop",
"api": "yarn workspace @refhiredcom/api",
"build:api": "turbo build --filter=api",
"start:api": "turbo start --filter=api",
"swagger": "yarn workspace @refhiredcom/swagger",
"prisma": "yarn workspace @referrer/prisma",
"ui": "yarn workspace @referrer/ui",
"story": "yarn workspace @referrer/storybook",
"eslint": "yarn workspace @referrer/eslint-config-custom",
"prettier-config": "yarn workspace @referrer/prettier-config",
"tailwind-config": "yarn workspace @referrer/tailwind-config",
"dx": "docker compose up -d",
"start:frontend": "yarn web run dev",
"start:backend": "yarn api run dev"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@referrer/prettier-config": "*",
"@testing-library/jest-dom": "^5.17.0",
"aws-cdk-lib": "^2.136.1",
"constructs": "^10.3.0",
"dotenv-cli": "^7.2.1",
"eslint": "^7.32.0",
"eslint-config-custom": "*",
"husky": "^8.0.0",
"jsdom": "^22.1.0",
"lint-staged": "^13.2.2",
"prettier": "^2.5.1",
"sst": "^2.41.4",
"turbo": "^1.10.14",
"vitest": "^1.6.0",
"vitest-mock-extended": "^1.1.4"
},
"engines": {
"node": ">=18.x",
"npm": ">=7.0.0",
"yarn": ">=1.19.0 < 2.0.0"
},
"lint-staged": {
"(apps|packages)/**/*.{js,ts,jsx,tsx}": [
"prettier --write",
"eslint --fix"
],
"**/*.{json,css,scss,md}": [
"prettier --write"
],
"packages/prisma/schema.prisma": [
"prisma format"
]
},
"dependencies": {}
}