-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.38 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.38 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
{
"name": "JTracker",
"version": "1.0.0",
"description": "",
"license": "MIT",
"scripts": {
"build": "tsc --noEmit && vite build",
"build:watch": "cross-env __DEV__=true vite build --watch",
"build:hmr": "rollup --config utils/reload/rollup.config.ts",
"wss": "node utils/reload/initReloadServer.js",
"dev": "npm run build:hmr && (run-p wss build:watch)",
"test": "jest"
},
"type": "module",
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"immer": "^10.0.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"zustand": "^4.3.8"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.5.0",
"@types/chrome": "0.0.224",
"@types/node": "18.15.11",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.11",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "5.56.0",
"@typescript-eslint/parser": "5.38.1",
"@vitejs/plugin-react": "2.2.0",
"chokidar": "^3.5.3",
"cross-env": "^7.0.3",
"eslint": "8.36.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"fs-extra": "11.1.0",
"npm-run-all": "^4.1.5",
"prettier": "2.7.1",
"rollup": "2.79.1",
"ts-loader": "9.4.2",
"typescript": "4.8.3",
"vite": "3.1.3",
"ws": "8.13.0"
}
}