-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.39 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
{
"name": "poc-vite-react-antd-ts",
"private": true,
"version": "0.0.0",
"main": "main.js",
"scripts": {
"webmock": "vite --mode webmock",
"startWeb": "vite --mode webdevelopment",
"build": "tsc && vite build",
"serve": "vite preview",
"start": "vite build --mode appdevelopment && electron .",
"test": "jest"
},
"dependencies": {
"@ant-design/charts": "^1.3.6",
"@ant-design/icons": "^4.7.0",
"@reduxjs/toolkit": "^1.8.2",
"antd": "^4.20.7",
"axios": "^0.27.2",
"buffer": "^6.0.3",
"qs": "^6.10.3",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-redux": "^8.0.2",
"react-router-dom": "6"
},
"devDependencies": {
"@rollup/pluginutils": "^4.2.1",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.2.0",
"@types/jest": "^28.1.0",
"@types/qs": "^6.9.7",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/react-redux": "^7.1.24",
"@vitejs/plugin-react": "^1.3.0",
"electron": "^19.0.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"msw": "^0.42.0",
"ts-jest": "^28.0.3",
"ts-node": "^10.8.0",
"typescript": "^4.6.3",
"vite": "^2.9.9",
"vite-plugin-webpackchunkname": "^0.0.12"
},
"msw": {
"workerDirectory": "public"
}
}