-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·94 lines (94 loc) · 2.63 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "mall-app",
"version": "1.0.0",
"description": "mall-app",
"author": "xxx-fe",
"private": true,
"scripts": {
"dev": "nodemon ./server/server.js --delay 1.5 --watch",
"prod": "nodemon ./server/server.js production --watch",
"build": "node build/build.js"
},
"dependencies": {
"axios": "^0.18.0",
"babel-cli": "^6.26.0",
"handlebars": "^4.0.11",
"handlebars-layouts": "^3.1.4",
"js-yaml": "^3.12.0",
"koa": "^2.5.1",
"koa-bodyparser": "^4.2.1",
"koa-convert": "^1.2.0",
"koa-helmet": "^4.0.0",
"koa-logger": "^3.2.0",
"koa-proxy": "^0.9.0",
"koa-redis": "^3.1.2",
"koa-router": "^7.4.0",
"koa-session": "^5.8.1",
"koa-static": "^4.0.3",
"koa-views": "^6.1.4",
"koa-webpack": "^5.1.0",
"koa2-cors": "^2.0.6",
"lodash": "^4.17.10",
"log4js": "^2.9.0",
"mini-css-extract-plugin": "^0.4.0",
"mysql": "^2.16.0",
"optimize-css-assets-webpack-plugin": "^4.0.2",
"promise-polyfill": "^8.1.0",
"time-fix-plugin": "^2.0.3",
"uglifyjs-webpack-plugin": "^1.2.5",
"vue": "^2.5.16",
"webpack-manifest-plugin": "^2.0.3"
},
"devDependencies": {
"autoprefixer": "^8.6.2",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2015-node": "^6.1.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"babel-runtime": "^6.26.0",
"chalk": "^2.4.1",
"connect-history-api-fallback": "^1.5.0",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^0.28.11",
"eventsource-polyfill": "^0.9.6",
"expose-loader": "^0.7.5",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.11",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^3.2.0",
"mockjs": "^1.0.1-beta3",
"node-sass": "^4.9.0",
"nodemon": "^1.17.5",
"ora": "^2.1.0",
"postcss-import": "^11.0.0",
"postcss-loader": "^2.0.8",
"postcss-url": "^7.2.1",
"rimraf": "^2.6.2",
"sass-loader": "^7.0.3",
"semver": "^5.5.0",
"shelljs": "^0.8.2",
"url-loader": "^1.0.1",
"vue-loader": "^14.2.1",
"vue-style-loader": "^4.0.2",
"vue-template-compiler": "^2.5.16",
"webpack": "^4.12.0",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-dev-middleware": "^3.1.3",
"webpack-hot-middleware": "^2.22.2",
"webpack-merge": "^4.1.3"
},
"engines": {
"node": ">= 7.0.0",
"npm": ">= 3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}