-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.8 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
{
"name": "rock-paper-scissors-golang",
"version": "0.1.0",
"author": "NIEVE Consulting SL",
"homepage": "./",
"private": true,
"dependencies": {
"axios": "^1.1.3",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"eslint-plugin-react-hooks": "^4.6.0",
"express": "^4.18.2",
"moment": "^2.29.4",
"nodemon": "^1.19.1",
"papaparse": "^4.6.0",
"react-dom": "^18.2.0",
"react-icons": "^4.6.0",
"react-router-dom": "^6.5.0",
"react-scripts": "5.0.1",
"reactjs-popup": "^2.0.5",
"styled-components": "^5.3.6",
"web-vitals": "^2.1.4",
"yarn": "^1.22.19"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.4.4",
"@babel/node": "^7.20.5",
"@babel/preset-env": "^7.4.4",
"concurrently": "^5.3.0",
"wait-on": "^5.2.1"
},
"scripts": {
"install-complete": "npm install && cd websocket-client && npm install",
"start": "concurrently \"cd websocket-server && go run *.go\" \"cross-env BROWSER=none yarn start-react\" \"wait-on http://localhost:3000 .\"",
"server": "cd websocket-server && go run *.go",
"start-react": "cd websocket-client && react-scripts start",
"build-server": "cd websocket-server && go build",
"build-react": "react-scripts build",
"build": "cd websocket-server && go build && cd ../websocket-client && yarn build-react",
"start-built-react": "cd websocket-client && npm run start-build",
"start-built-server": "cd websocket-server && ./websocket-server",
"start-built": "concurrently \"npm run start-built-server\" \"npm run start-built-react\""
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}