-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.58 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
{
"name": "express-webpack-full-live-reload-example",
"version": "1.0.0",
"description": "A workflow with full live reload for webpack&express application.",
"repository": {
"type": "git",
"url": "https://github.com/kenanpengyou/express-webpack-full-live-reload-example.git"
},
"author": "liangzhu",
"main": "app.js",
"scripts": {
"start": "cross-env NODE_ENV=dev supervisor -w server,app.js -e node,js,html app",
"browsersync": "cross-env NODE_ENV=dev node app_browsersync",
"build": "webpack",
"production": "webpack --config webpack.production.config.js -p & cross-env NODE_ENV=production node app"
},
"license": "MIT",
"dependencies": {
"body-parser": "^1.17.2",
"consolidate": "^0.14.5",
"ejs": "^2.5.5",
"es6-promise": "^4.1.1",
"express": "^4.14.0",
"express-router": "0.0.1",
"gridfs-stream": "^1.1.1",
"install": "^0.10.1",
"jquery": "^3.2.1",
"md5": "^2.2.1",
"mongoose": "^4.11.3",
"multer": "^1.3.0",
"npm": "^5.3.0"
},
"devDependencies": {
"browser-sync": "^2.18.5",
"chokidar": "^1.6.1",
"clean-webpack-plugin": "^0.1.14",
"cross-env": "^3.1.4",
"css-loader": "^0.26.1",
"extract-text-webpack-plugin": "^2.0.0-rc.3",
"file-loader": "^0.10.0",
"node-sass": "^4.5.0",
"npm-install-webpack-plugin": "^4.0.4",
"reload": "^1.1.1",
"resolve-url-loader": "^2.0.0",
"sass-loader": "^6.0.1",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^2.2.1",
"webpack-dev-middleware": "^1.10.1",
"webpack-hot-middleware": "^2.17.0"
}
}