-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.45 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
{
"name": "hichain_web_apps",
"version": "1.0.0",
"private": true,
"packageManager": "yarn@1.22.22",
"workspaces": [
"src/client",
"src/games",
"src/server"
],
"scripts": {
"start:client": "yarn workspace client start",
"start:server": "yarn workspace server start",
"build": "npm-run-all -p build:*",
"build:client": "yarn workspace client build",
"build:server": "yarn workspace server build",
"build:games": "yarn workspace games build",
"serve:client": "yarn workspace client serve",
"serve:server": "yarn workspace server serve",
"typecheck": "npm-run-all -p typecheck:*",
"typecheck:client": "yarn workspace client typecheck",
"typecheck:server": "yarn workspace server typecheck",
"typecheck:games": "yarn workspace games typecheck",
"tsc-watch:client": "yarn workspace client tsc-watch",
"tsc-watch:server": "yarn workspace server tsc-watch",
"tsc-watch:games": "yarn workspace games tsc-watch",
"lint": "npm-run-all -p lint:*",
"lint:ts": "eslint --max-warnings=0 \"./src/**/*.{ts,tsx}\"",
"lint:style": "stylelint --max-warnings=0 \"./src/**/*.tsx\"",
"test": "npm-run-all -p test:*",
"test:games": "yarn workspace games test"
},
"engines": {
"node": "20.x"
},
"dependencies": {
"@games": "link:./src/games",
"@stylelint/postcss-css-in-js": "^0.38.0",
"@types/lodash": "^4.14.172",
"boardgame.io": "0.50.2",
"dayjs": "^1.10.6",
"dotenv": "^10.0.0",
"lodash": "^4.17.21",
"npm-run-all": "^4.1.5",
"postcss-syntax": "^0.36.2",
"typescript": "~4.4"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/koa-router": "^7.4.2",
"@types/socket.io": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"eslint": "^7.32.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^24.5.2",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^29.7.0",
"prettier": "^2.4.1",
"stylelint": "^16.3.0",
"stylelint-config-recess-order": "^5.0.0",
"stylelint-config-standard": "^36.0.0",
"ts-jest": "^29.2.2"
},
"resolutions": {
"engine.io": ">=6.5.4",
"socket.io-parser": ">=4.2.3",
"json5": ">=2.2.2",
"@koa/cors": ">=5.0.0",
"ws": ">=8.17.1",
"socket.io": ">=4.6.2"
},
"volta": {
"node": "20.11.1",
"yarn": "1.22.22"
}
}