-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 915 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 915 Bytes
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
{
"name": "app",
"version": "0.0.1",
"main": "server.js",
"dependencies": {
"body-parser": "^1.18.2",
"cuid": "^2.1.1",
"es6-promise": "^4.2.4",
"express": "^4.16.3",
"helmet": "^3.12.0",
"interactjs": "^1.3.3",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.17.5",
"mongoose": "^5.0.15",
"next": "^5.1.0",
"normalize.css": "^8.0.0",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-interactjs-wrapper": "^0.1.7",
"react-redux": "^5.0.7",
"react-uwp": "^1.1.8",
"redux": "^4.0.0",
"redux-thunk": "^2.2.0",
"slugify": "^1.2.9",
"superagent": "^3.8.2",
"sw-precache-webpack-plugin": "^0.11.5"
},
"scripts": {
"dev": "next -p 8080",
"build": "next build",
"prestart": "next build",
"start": "node server",
"server": "next build && SET MONGO_USER=USER&& SET MONGO_PWD=PWD&& node --inspect server"
}
}