-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.17 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
{
"name": "ws-sql",
"version": "0.0.0",
"private": true,
"dependencies": {
"ace-builds": "^1.2.9",
"classnames": "^2.2.5",
"debug": "^3.1.0",
"dotenv": "^4.0.0",
"express": "^4.15.4",
"express-enforces-ssl": "^1.1.0",
"faye-websocket": "^0.11.1",
"helmet": "^3.8.1",
"markdown-react-js": "^1.0.0",
"permessage-deflate": "^0.1.6",
"pg": "^7.4.0",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-intl": "^2.4.0",
"react-json-view": "^1.13.3",
"react-redux": "^5.0.6",
"react-scripts": "1.0.17",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"concurrently": "^3.5.0"
},
"scripts": {
"start": "concurrently \"react-scripts start\" \"node server\"",
"heroku-postbuild": "react-scripts build",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"engines": {
"node": ">=8.9.1"
},
"proxy": {
"/": {
"target": "http://localhost:3001"
},
"/ws": {
"target": "http://localhost:3001",
"ws": true
}
}
}