-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.15 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"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": "cross-env NODE_ENV=production webpack",
"production": "webpack --config webpack.production.config.js -p & cross-env NODE_ENV=production node app"
},
"license": "MIT",
"dependencies": {
"axios": "^0.15.3",
"bcrypt-nodejs": "^0.0.3",
"body-parser": "^1.17.1",
"compression": "^1.6.2",
"connect-mongo": "^1.3.2",
"connect-redis": "^3.2.0",
"consolidate": "^0.14.5",
"cookie-parser": "^1.4.3",
"cors": "^2.8.1",
"crypto-js": "^3.1.9-1",
"ejs": "^2.5.5",
"element-ui": "^1.2.7",
"eventproxy": "^0.3.5",
"express": "^4.14.0",
"express-session": "^1.15.1",
"geetest": "^4.1.1",
"moment": "^2.18.0",
"mongoose": "^4.9.1",
"passport": "^0.3.2",
"vue": "^2.2.6",
"vue-router": "^2.3.1",
"vuex": "^2.2.1",
"vue-resource": "^1.2.1"
},
"devDependencies": {
"babel-core": "^6.0.0",
"babel-loader": "^6.0.0",
"babel-preset-latest": "^6.0.0",
"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",
"html-webpack-plugin": "^2.28.0",
"extract-text-webpack-plugin": "^2.0.0-rc.3",
"vue-template-compiler": "^2.2.1",
"file-loader": "^0.10.0",
"node-sass": "^4.5.0",
"vue-loader": "^11.3.4",
"vue-style-loader": "^2.0.5",
"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-merge": "^4.1.0",
"webpack-dev-middleware": "^1.10.1",
"webpack-hot-middleware": "^2.17.0"
}
}