-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.38 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
{
"name": "chess-but-better",
"description": "Chess with an added layer of complexity",
"scripts": {
"lint": "npx nx run-many --target lint",
"format": "npx nx format:write",
"test": "npx nx run-many --target test --all",
"build": "webpack --mode production --config webpack.config.ts",
"start": "node server.js",
"dev": "webpack serve --mode development --config webpack.config.ts"
},
"author": "Ido Barnea",
"license": "Apache-2.0",
"dependencies": {
"copy-webpack-plugin": "^12.0.2",
"express": "^4.18.2",
"html-webpack-plugin": "^5.6.0",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4"
},
"devDependencies": {
"@nx/eslint-plugin": "16.10.0",
"@nx/jest": "^17.2.7",
"@nx/js": "17.2.7",
"@nx/linter": "17.2.7",
"@nx/workspace": "16.10.0",
"@types/jest": "^29.5.11",
"@types/node": "18.7.1",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"eslint": "~8.46.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.4.1",
"nodemon": "^3.1.0",
"nx": "17.2.7",
"nx-cloud": "^16.0.4",
"parcel": "^2.10.3",
"prettier": "^3.2.5",
"ts-jest": "^29.1.1",
"ts-loader": "^9.5.1",
"ts-node": "10.9.1",
"typescript": "~5.1.3",
"webpack-dev-server": "^5.0.2"
}
}