-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.22 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
{
"name": "tankila",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=20.10.0"
},
"dependencies": {
"cannon-es": "^0.18.0",
"dotenv": "^10.0.0",
"express": "^4.20.0",
"mongoose": "^8.9.5",
"ws": "^7.5.10"
},
"scripts": {
"client-dev": "webpack serve --config ./client/webpack.dev.ts",
"client-prod": "webpack --config ./client/webpack.prod.ts && ts-node -T client/tools/copy-resources && ts-node -T client/tools/unzip",
"prestart-prod": "npm run client-prod",
"server-dev": "nodemon --watch ./server/src/** --watch ./common/** --ext ts,json --exec ts-node ./server/src/index",
"server-prod": "yarn server-prod-build && node ./server/build/server/src/index.js",
"server-prod-build": "npx tsc --project server/tsconfig.json",
"start": "ts-node -T ./server/src/index.ts",
"lint": "eslint ."
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/copy-webpack-plugin": "^8.0.1",
"@types/dat.gui": "^0.7.7",
"@types/express": "^4.17.13",
"@types/fs-extra": "^9.0.13",
"@types/lodash": "^4.14.177",
"@types/node": "^14.14.14",
"@types/three": "^0.146.0",
"@types/unzipper": "^0.10.4",
"@types/webpack": "^5.28.0",
"@types/ws": "^8.2.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.4.0",
"eslint": "^8.44.0",
"fs-extra": "^10.0.0",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.2",
"lodash": "^4.17.21",
"mini-css-extract-plugin": "^2.6.1",
"node-sass": "^9.0.0",
"nodemon": "^3.0.1",
"sass-loader": "^12.2.0",
"style-loader": "^3.3.1",
"three": "^0.146.0",
"ts-loader": "^9.2.6",
"ts-node": "^10.9.1",
"typescript": "^4.4.3",
"unzipper": "^0.10.11",
"webpack": "^5.94.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.8.0"
},
"resolutions": {
"node-sass/meow": "^10.1.2",
"http-signature": "^1.3.6"
}
}