-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1 KB
/
package.json
File metadata and controls
34 lines (34 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
{
"name": "sp-server-2",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"clean": "rimraf dist",
"dev:build": "yarn run clean && webpack -w",
"dev": "cross-env NODE_ENV=development nodemon dist/index.bundle.js",
"start": "concurrently \"yarn dev:build\" \"yarn dev\""
},
"dependencies": {
"body-parser": "^1.18.2",
"express": "^4.16.2",
"express-promise-router": "^3.0.1",
"fbgraph": "^1.4.1",
"helmet": "^3.11.0",
"joi": "^13.1.2",
"mongoose": "^5.0.6",
"socket.io": "^2.0.4"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"concurrently": "^3.5.1",
"cross-env": "^5.1.3",
"morgan": "^1.9.0",
"rimraf": "^2.6.2",
"webpack": "^3.11.0",
"webpack-node-externals": "^1.6.0"
}
}