-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
57 lines (57 loc) · 1.75 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
{
"name": "Tarot",
"description": "Jouer Tarot sur ligne",
"dependencies": {
"compression": "~1.7.4",
"connect": "~3.7.0",
"emoji": "~0.3.2",
"es6-shim": "~0.35.6",
"react": "~17.0.2",
"react-document-title": "~2.0.3",
"react-dom": "~17.0.2",
"send": "~0.17.2",
"systemd-socket": "~0.0.0",
"uuid": "~8.3.2",
"websocket": "~1.0.34"
},
"devDependencies": {
"@types/compression": "1.7.2",
"@types/connect": "~3.4.35",
"@types/node": "~17.0.8",
"@types/react": "~17.0.38",
"@types/react-document-title": "~2.0.5",
"@types/react-dom": "~17.0.11",
"@types/send": "~0.17.1",
"@types/uuid": "~8.3.3",
"@types/websocket": "1.0.4",
"@typescript-eslint/eslint-plugin": "5.9.x",
"@typescript-eslint/parser": "5.9.x",
"autoprefixer": "^10.4.1",
"clean-webpack-plugin": "~4.0.0",
"css-loader": "~6.5.1",
"css-minimizer-webpack-plugin": "~3.3.1",
"eslint": "8.6.x",
"eslint-config-prettier": "8.3.x",
"eslint-plugin-import": "2.25.x",
"eslint-plugin-jsdoc": "37.5.x",
"mini-css-extract-plugin": "~2.4.5",
"npm-check-updates": "^16.6.2",
"postcss-loader": "~6.2.1",
"source-map-loader": "~3.0.1",
"ts-loader": "~9.2.6",
"typescript": "~4.5.4",
"webpack": "^5.65.0",
"webpack-cli": "~4.9.1"
},
"scripts": {
"start": "webpack-cli --watch --mode=development",
"build": "webpack-cli --mode=production",
"updatepackages": "ncu -u",
"buildServer": "tsc -m commonjs --project .",
"startServer": "node lib/server/main.js",
"buildStartServer": "npm run buildServer && npm run startServer",
"startProductionServer": "NODE_ENV=production npm run startServer",
"lint": "eslint src",
"lint-fix": "eslint src --fix"
}
}