-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.59 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
71
72
73
74
75
76
77
{
"name": "vue-express-template",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"dev": "webpack-dev-server --content-base ./views/ --open --inline --hot --compress --history-api-fallback --config ./build/webpack.dev.config.js",
"server": "cross-env NODE_ENV=development node ./bin/www",
"build": "webpack --progress --hide-modules --config ./build/webpack.prod.config.js",
"initdb": "node scripts/init_db.js",
"lint": "eslint --fix --ext .js,.vue frontend"
},
"dependencies": {
"auto-loader": "^0.2.0",
"axios": "^0.15.3",
"body-parser": "~1.17.1",
"clipboard": "^1.5.12",
"cookie-parser": "~1.4.3",
"crypto": "^1.0.1",
"debug": "~2.6.3",
"ejs": "~2.5.6",
"express": "~4.15.2",
"express-partials": "^0.3.0",
"express-robots": "^0.1.6",
"express-session": "^1.15.6",
"iconv-lite": "^0.4.19",
"iview": "^2.9.0",
"js-cookie": "^2.1.3",
"jsdom": "^11.2.0",
"less-middleware": "~2.2.0",
"morgan": "~1.8.1",
"multer": "^1.4.1",
"mysql2": "^1.5.3",
"request": "^2.81.0",
"request-promise": "^4.2.1",
"sequelize": "^4.37.10",
"serve-favicon": "~2.4.2",
"session-file-store": "^1.1.2",
"svg-captcha": "^1.3.12",
"urlencode": "^1.1.0",
"vue": "^2.5.2",
"vue-router": "^3.0.1",
"vuex": "^2.2.1"
},
"devDependencies": {
"autoprefixer-loader": "^3.2.0",
"babel": "^6.23.0",
"babel-core": "^6.23.1",
"babel-loader": "^7.1.2",
"babel-plugin-transform-runtime": "^6.12.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-runtime": "^6.11.6",
"cross-env": "^5.1.6",
"css-loader": "^0.28.7",
"eslint": "^3.12.2",
"eslint-plugin-html": "^1.7.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.5",
"html-loader": "^0.5.1",
"html-webpack-plugin": "^2.28.0",
"iview-loader": "^1.0.0",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"style-loader": "^0.19.1",
"url-loader": "^0.6.2",
"vue-hot-reload-api": "^2.2.4",
"vue-html-loader": "^1.2.3",
"vue-loader": "^13.5.0",
"vue-style-loader": "^3.0.3",
"vue-template-compiler": "^2.2.1",
"webpack": "^3.8.1",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.0.0",
"webpack-merge": "^4.1.1"
}
}