-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 985 Bytes
/
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
{
"name": "myapp",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"serve": "DEBUG=myapp:* npm-run-all -p build-dev start",
"build": "webpack",
"build-dev": "webpack --watch --mode=development"
},
"dependencies": {
"concurrently": "^3.5.1",
"cookie-parser": "~1.4.3",
"debug": "~2.6.9",
"express": "~4.16.0",
"http-errors": "~1.6.2",
"lodash": "^4.17.13",
"moment": "^2.22.2",
"morgan": "~1.9.0",
"npm-run-all": "^4.1.3",
"pug": "2.0.0-beta11",
"pug-loader": "^2.4.0",
"socket.io": "^2.1.1"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"eslint": "^4.19.1",
"eslint-loader": "^2.0.0",
"nodemon": "^1.17.5",
"random-words": "^1.1.0",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.3",
"webpack-dev-server": "^3.1.4"
}
}