-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 1.73 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
{
"name": "chess-3d",
"version": "1.0.0",
"description": "",
"engines": {
"node": "16.4.2"
},
"scripts": {
"start:dev": "npm run build:dev && webpack serve --config webpack.dev.config.js",
"build:dev": "webpack --config webpack.dev.config.js",
"build:prod": "webpack --config webpack.prod.config.js && npm run minify:css",
"minify:css": "npx postcss ./dist/styles.css > ./dist/styles.min.css && node ./scripts/post-minify-css.js",
"start": "npm run build:prod && node server.js",
"lint": "npm run lint -- --fix",
"prepare": "husky install"
},
"sideEffects": false,
"keywords": [],
"author": "Ernest Rudnicki",
"license": "MIT",
"dependencies": {
"cannon-es": "0.19.0",
"cannon-es-debugger": "1.0.0",
"chess.js": "0.13.4",
"express": "4.18.1",
"lodash.clonedeep": "4.5.0",
"three": "0.143.0",
"web-worker": "1.2.0"
},
"devDependencies": {
"@commitlint/cli": "17.0.3",
"@commitlint/config-conventional": "17.0.3",
"@types/chess.js": "0.13.3",
"@types/lodash.clonedeep": "4.5.7",
"@types/three": "0.143.0",
"@typescript-eslint/eslint-plugin": "5.32.0",
"@typescript-eslint/parser": "5.32.0",
"copy-webpack-plugin": "11.0.0",
"cssnano": "5.1.13",
"eslint": "8.21.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"postcss": "8.4.16",
"postcss-cli": "10.0.0",
"prettier": "2.7.1",
"ts-loader": "9.3.1",
"ts-node": "10.9.1",
"webpack": "5.74.0",
"webpack-cli": "4.10.0",
"webpack-dev-server": "4.9.3"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint-staged"
}
},
"lint-staged": {
"src/**/*.ts": [
"eslint --fix",
"git add"
]
}
}