-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.49 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
58
{
"name": "vapor2",
"version": "0.1.0",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"axios": "^0.20.0",
"body-parser": "1.19.0",
"classnames": "2.2.6",
"concurrently": "5.0.1",
"cors": "2.8.5",
"dotenv": "8.2.0",
"express": "4.17.1",
"fullscreen-polyfill": "1.0.2",
"keycode": "2.2.0",
"markdown": "^0.5.0",
"marked": "^1.1.1",
"mobx": "5.15.1",
"mobx-react": "6.1.4",
"node-sass": "4.13.1",
"nodemon": "^2.0.4",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-scripts": "3.3.0",
"socket.io": "2.3.0",
"socket.io-client": "2.3.0",
"walk": "2.3.14",
"xml2js": "^0.4.23"
},
"scripts": {
"start-client": "react-scripts start --no-cache",
"build": "react-scripts build",
"test": "react-scripts test --no-cache",
"eject": "react-scripts eject",
"start": "concurrently \"nodemon server\" \"react-scripts start\"",
"server": "node server",
"docker": "docker run -p 49161:3001 -d robhybrid/vapor",
"docker-build": "docker build -t robhybrid/vapor ."
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"proxy": "http://localhost:3001"
}