-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.46 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
{
"name": "signlab",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"start:dev": "npm run build:dev --workspace=client && npm run start:dev --workspace=server",
"start:watch": "NODE_ENV=local concurrently 'npm run start:watch --workspace=server' 'npm run start:watch --workspace=client'",
"start:test": "NODE_ENV=test concurrently 'npm run start:watch --workspace=server' 'npm run start:watch --workspace=client' 'cypress open'",
"build:prod": "npm run introspection && npm run build:prod --workspaces --if-present",
"start:prod": "npm run start:prod --workspace=server",
"lint:fix": "npm run lint:fix --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"prettier": "npm run prettier --workspaces --if-present",
"prettier:fix": "npm run prettier:fix --workspaces --if-present",
"start:ci": "NODE_ENV=test npm run start:prod --workspace=server",
"introspection": "npm run introspection --workspace=client"
},
"workspaces": [
"server",
"client",
"shared",
"gateway"
],
"devDependencies": {
"@types/mocha": "^9.1.1",
"cypress": "^10.7.0",
"cypress-mongodb": "^5.3.0",
"dotenv": "^16.0.2",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.8.3"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"concurrently": "^7.4.0"
}
}