-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.97 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.97 KB
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
{
"packageManager": "pnpm@9.12.1",
"name": "webpack-starter",
"version": "2.0.0",
"description": "pnpm@9.12.1",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "webpack serve --color --progress --config webpack.config-dev.cjs",
"build": "webpack --config webpack.config-prod.cjs",
"stats": "webpack --config webpack.config-stats.cjs --profile --json >stats.json",
"lint": "eslint --fix src",
"test": "echo \"Error: no test specified\" && exit 1",
"test-ts-hello": "mocha tests/mocha/helloworld.spec.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"uuid": "^10.0.0"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.15",
"@types/chai": "^5.0.1",
"@types/chai-string": "^1.4.5",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.10",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/sinon": "^17.0.3",
"@types/uuid": "^10.0.0",
"@typescript-eslint/parser": "^8.21.0",
"buffer": "^6.0.3",
"chai": "^5.1.2",
"chai-string": "^1.5.0",
"clean-webpack-plugin": "^4.0.0",
"compression-webpack-plugin": "^11.1.0",
"error-stack-parser": "^2.1.4",
"eslint": "^9.19.0",
"eslint-plugin-react": "^7.37.4",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"globals": "^15.14.0",
"html-webpack-plugin": "^5.6.3",
"mini-css-extract-plugin": "^2.9.2",
"mocha": "^10.8.2",
"react-refresh": "^0.14.2",
"react-refresh-typescript": "^2.0.10",
"sinon": "^19.0.2",
"stream-browserify": "^3.0.0",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.2",
"tsconfig-paths-webpack-plugin": "^4.2.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.21.0",
"webpack": "^5.97.1",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.2.0",
"webpack-merge": "^6.0.1"
}
}