-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1 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
{
"name": "new-folder",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"dev": "concurrently \"cross-env PORT=3000 node server.js\" \"cross-env PORT=3001 node server.js\" \"cross-env PORT=3002 node server.js\""
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "a mini lotto that use web socketting",
"dependencies": {
"axios": "^1.8.2",
"express": "^4.21.2",
"react-router-dom": "^7.2.0",
"react-scripts": "^5.0.1",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"stream-http": "^3.2.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"concurrently": "^9.1.2",
"cross-env": "^7.0.3"
}
}