-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.06 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
{
"packageManager": "[email protected]",
"name": "mobx demo",
"version": "1.0.0",
"description": "",
"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": {
"mobx": "^6.11.0",
"mobx-react-lite": "^4.0.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.11",
"@types/chai": "^4.3.11",
"@types/chai-string": "^1.4.5",
"@types/mocha": "^10.0.6",
"@types/node": "^20.10.0",
"@types/react": "^18.2.38",
"@types/react-dom": "^18.2.17",
"@types/sinon": "^17.0.2",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"buffer": "^6.0.3",
"chai": "^4.3.10",
"chai-string": "^1.5.0",
"clean-webpack-plugin": "^4.0.0",
"compression-webpack-plugin": "^10.0.0",
"eslint": "^8.54.0",
"eslint-plugin-async-await": "^0.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-perf": "^3.3.1",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"html-webpack-plugin": "^5.5.3",
"mini-css-extract-plugin": "^2.7.6",
"mocha": "^10.2.0",
"react-refresh": "^0.14.0",
"react-refresh-typescript": "^2.0.9",
"sinon": "^17.0.1",
"stream-browserify": "^3.0.0",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.1",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "^5.3.2",
"webpack": "^5.89.0",
"webpack-bundle-analyzer": "^4.10.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.10.0"
}
}