-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.26 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
{
"name": "root",
"version": "0.1.0",
"private": true,
"license": "UNLICENSED",
"scripts": {
"start": "concurrently -n \"SER,CLI\" -c \"bgGreen,bgBlue\" \"yarn server\" \"yarn client\"",
"dev": "concurrently -n \"SER,CLI\" -c \"bgGreen,bgBlue\" \"yarn server-dev\" \"yarn client\"",
"bootstrap": "lerna bootstrap",
"client": "yarn workspace client run start",
"server": "yarn workspace server run start",
"server-dev": "yarn workspace server run dev",
"app": "yarn workspace app run watch",
"lint": "eslint ./packages/*/src/**/*.{js,jsx,ts,tsx}",
"fix": "eslint ./packages/*/src/**/*.{js,jsx,ts,tsx} --fix"
},
"workspaces": {
"packages": ["packages/*"],
"nohoist": [
"**/egg",
"**/egg/**"
]
},
"devDependencies": {
"@types/node": "^13.7.0",
"@typescript-eslint/eslint-plugin": "^2.19.0",
"@typescript-eslint/parser": "^2.19.0",
"concurrently": "^5.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-react": "^7.18.3",
"lerna": "^3.20.2",
"ts-node": "^8.6.2",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.7.5"
}
}