-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.39 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
{
"private": true,
"workspaces": [
"packages/client",
"packages/server",
"packages/types"
],
"packageManager": "[email protected]",
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/eslint-parser": "^7.17.0",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"buffer": "^6.0.3",
"concurrently": "^7.2.1",
"eslint": "^8.16.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.6.2"
},
"staticFiles": {
"staticPath": "src/assets",
"staticOutPath": "assets"
},
"scripts": {
"build": "yarn workspaces foreach -p run build",
"clean": "rm -Rf packages/client/dist && rm -Rf packages/server/dist && cd packages/client && mkdir dist && cd ../server && mkdir dist && echo 'done'",
"dev": "concurrently -k \"yarn:dev:*\"",
"dev:client": "yarn workspace @neu5/client dev",
"dev:server": "yarn workspace @neu5/server dev",
"dev:serve": "yarn workspace @neu5/server dev:serve",
"lint": "eslint 'packages/**/*.ts'",
"serve": "yarn workspace @neu5/server serve",
"test": "yarn workspaces foreach -p run test"
},
"resolutions": {
"got": "^11.8.5",
"json5": "^2.2.2",
"socket.io-parser": "^4.2.3"
}
}