-
-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
81 lines (81 loc) · 2.42 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
{
"name": "githuber",
"version": "1.7.0",
"main": "index.js",
"repository": "git@github.com:zhuowenli/githuber.git",
"author": "卓文理 <531840344@qq.com>",
"license": "Mozilla Public License Version 2.0",
"scripts": {
"dev": "poi --dev",
"watch": "poi watch",
"build": "rm -rf dist && cross-env NODE_ENV=production poi build",
"start": "pm2 start ./app/index.js --name 'githuber-server'",
"restart": "pm2 restart githuber-server",
"nodemon": "nodemon --watch app ./app/index.js",
"db:seed": "sequelize db:seed:all",
"db:seed:undo": "sequelize db:seed:undo:all",
"db:migrate": "sequelize db:migrate",
"db:migrate:undo": "sequelize db:migrate:undo",
"db:rollback": "sequelize db:migrate:undo:all",
"create:migration": "sequelize migration:create",
"create:seed": "sequelize seed:create"
},
"dependencies": {
"axios": "^0.19.2",
"babel-polyfill": "^6.26.0",
"bluebird": "^3.7.2",
"csshake": "^1.5.3",
"element-ui": "^2.13.2",
"file-saver": "^1.3.8",
"iscroll": "^5.2.0",
"jquery": "^3.4.0",
"jsonp": "^0.2.1",
"koa": "^2.4.1",
"koa-bodyparser": "^4.2.0",
"koa-convert": "^1.2.0",
"koa-logger": "^3.1.0",
"koa-mount": "^3.0.0",
"koa-proxy": "^0.9.0",
"koa-router": "^7.3.0",
"koa-session": "^5.7.1",
"koa-static": "^4.0.2",
"koa-views": "^6.1.3",
"koa2-cors": "^2.0.5",
"moment": "^2.19.3",
"node-env-file": "^0.1.8",
"normalize.css": "^7.0.0",
"octicons": "^7.1.0",
"qiniu": "^7.1.1",
"querystring": "^0.2.0",
"vue": "^2.5.13",
"vue-i18n": "^7.4.0",
"vue-iscroll-view": "^1.0.3",
"vue-waterfall": "^1.0.6",
"vuedraggable": "^2.16.0",
"vuex": "^3.0.1"
},
"devDependencies": {
"autoprefixer": "^7.2.5",
"babel-eslint": "^8.2.1",
"babel-plugin-component": "^1.1.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-preset-vue": "^2.0.0",
"cross-env": "^5.1.3",
"eslint": "^4.15.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-vue": "^2.0.2",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-vue": "^4.2.0",
"mysql2": "^1.5.1",
"node-sass": "^4.13.1",
"nodemon": "^1.12.7",
"pm2": "^2.9.1",
"poi": "^9.5.5",
"pug": "^2.0.0-rc.4",
"sass-loader": "^6.0.6",
"sequelize": "^5.8.9",
"sequelize-cli": "^5.5.0"
}
}