-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 2.74 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
{
"name": "mocker",
"version": "4.0.1",
"description": "基于 easywebpack-vue 和 egg-view-vue-ssr 插件的 egg + vue 服务端渲染同构工程骨架项目",
"scripts": {
"debug": "egg-bin debug",
"clean": "easy clean all",
"build": "cross-env easywebpack build prod",
"build:dev": "cross-env easywebpack build dev",
"build:test": "cross-env easywebpack build test",
"build:prod": "cross-env easywebpack build prod",
"dll": "cross-env easywebpack build dev -f webpack.dll.js",
"dev": "cross-env WORKERS=1 node index.js",
"start": "cross-env EGG_SERVER_ENV=prod NODE_ENV=production node index.js",
"kill": "pkill --signal SIGINT egg-vue-webpack-boilerplate",
"kill-mac": "kill -9 $(lsof -i:7001 |grep 'node'|awk '{print $2}')",
"kill-win": "taskkill -PID $(netstat -ano | findstr 7001|awk '{print $5}') -F",
"restart": "npm run kill-port && npm run start",
"lint": "eslint .",
"fix": "eslint --fix .",
"ii": "npm install --registry https://registry.npm.taobao.org"
},
"dependencies": {
"axios": "^0.17.1",
"bcryptjs": "^2.4.3",
"clipboard": "^2.0.1",
"cross-env": "^5.0.0",
"egg": "^2.1.0",
"egg-cors": "^2.0.0",
"egg-jwt": "^3.0.0",
"egg-logger": "^1.5.0",
"egg-serviceworker": "^1.0.0",
"egg-validate": "^1.0.0",
"egg-view-vue-ssr": "^3.0.2",
"element-ui": "^2.3.8",
"koa-bodyparser": "^4.2.0",
"lodash": "^4.17.10",
"mockjs": "^1.0.1-beta3",
"moment": "^2.17.1",
"mongoose": "^5.0.3",
"service-worker-register": "^1.2.4",
"vue": "^2.5.0",
"vue-router": "^3.0.1",
"vuex": "^3.0.1",
"vuex-router-sync": "^5.0.0"
},
"devDependencies": {
"autod-egg": "^1.0.0",
"autoprefixer": "^7.1.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-env": "^1.6.0",
"easywebpack-cli": "^3.8.0",
"easywebpack-vue": "^4.0.0",
"egg-bin": "^4.3.7",
"egg-logview": "^1.0.0",
"egg-webpack": "^4.0.1",
"egg-webpack-vue": "^2.0.0",
"eslint-config-egg": "^5.0.0",
"eslint-plugin-vue": "^2.0.1",
"imagemin-webpack-plugin": "^2.0.0",
"ip": "^1.1.5",
"less": "^2.7.2",
"less-loader": "^4.0.5",
"node-sass": "^4.5.3",
"sass-loader": "^6.0.6"
},
"engines": {
"node": ">=8.0.0"
},
"ci": {
"version": "8, 9"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hubcarl/egg-vue-webpack-boilerplate.git"
},
"author": "[email protected]",
"license": "MIT",
"homepage": "https://github.com/hubcarl/egg-vue-webpack-boilerplate"
}