-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.33 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
{
"type": "module",
"dependencies": {
"@yxim/nim-web-sdk": "^9.17.5",
"antd": "^5.20.2",
"fs": "^0.0.1-security",
"http-server": "^14.1.1",
"js-yaml": "^4.1.0",
"next": "^14.2.8",
"next-transpile-modules": "^10.0.1",
"node-nim": "^9.18.0",
"path": "^0.12.7",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.1",
"react-scripts": "5.0.0",
"sass": "^1.78.0",
"sass-embedded": "^1.77.8",
"typescript": "^4.0.0",
"uuid": "^10.0.0",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"ws": "^8.18.0"
},
"scripts": {
"dev": "concurrently \"npm run next\" \"npm run websocket\"",
"next": "next dev -p 9250",
"websocket": "node websocketServer.js",
"build": "concurrently \"npm run next\" \"npm run websocket\"",
"start": "concurrently \"npm run next\" \"npm run websocket\""
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/node": "22.5.4",
"@types/react": "18.3.5",
"concurrently": "^9.0.0",
"node-loader": "^2.0.0"
}
}