-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
101 lines (101 loc) · 3.2 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
95
96
97
98
99
100
101
{
"name": "nuxtjs-express-admin",
"version": "1.0.0",
"description": "Nuxt.js Express Admin.",
"main": "index.js",
"repository": "https://github.com/kenote/nuxtjs-express-admin.git",
"author": "thondery <thondery@163.com>",
"license": "MIT",
"scripts": {
"dev": "npm run clear && backpack dev",
"build": "npm run clear && nuxt build && backpack build",
"task": " node ./build/task.js",
"start": "pm2 start ecosystem.config.js",
"restart": "pm2 restart ecosystem.config.js",
"stop": "pm2 stop ecosystem.config.js",
"delete": "pm2 delete ecosystem.config.js",
"clear": "rimraf ./build ./.nuxt",
"deploy": "deploy-proxy",
"tools": "babel-node --plugins transform-decorators-legacy --presets env ./tools.es6"
},
"dependencies": {
"@alicloud/pop-core": "^1.7.6",
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"compression": "^1.7.3",
"connect-redis": "^3.4.0",
"cookie-parser": "^1.4.3",
"cors": "^2.8.5",
"echarts": "^4.2.1",
"element-ui": "^2.5.4",
"errorhandler": "^1.5.0",
"express": "^4.16.4",
"express-session": "^1.15.6",
"file-saver": "^2.0.2",
"inquirer-datepicker": "^0.1.2",
"inquirer-number-plus": "^1.0.0",
"is-json": "^2.0.1",
"js-yaml": "^3.13.1",
"jsonwebtoken": "^8.4.0",
"kenote-express-helper": "^1.0.5",
"kenote-mailer-helper": "^1.0.4",
"kenote-mongoose-helper": "^1.0.5",
"kenote-socket-helper": "^1.0.0",
"kenote-store-helper": "^1.0.4",
"kenote-task-helper": "^1.0.2",
"kenote-validate-helper": "^1.0.3",
"method-override": "^3.0.0",
"mongoose": "^5.4.10",
"nunjucks": "^3.1.7",
"nuxt": "2.3.4",
"nuxt-class-component": "^1.2.1",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"runscript": "^1.3.0",
"tty-table": "^2.7.0",
"v-charts": "^1.19.0",
"validator": "^10.11.0",
"vue-codemirror": "^4.0.6",
"vue-property-decorator": "^7.3.0",
"xlsx": "^0.14.3",
"yaml": "^1.5.0"
},
"devDependencies": {
"@types/bluebird": "^3.5.25",
"@types/compression": "^0.0.36",
"@types/connect-redis": "^0.0.8",
"@types/cookie-parser": "^1.4.1",
"@types/cors": "^2.8.4",
"@types/echarts": "^4.1.9",
"@types/errorhandler": "^0.0.32",
"@types/express": "^4.16.1",
"@types/express-session": "^1.15.11",
"@types/file-saver": "^2.0.1",
"@types/fs-extra": "^5.0.4",
"@types/ini": "^1.3.30",
"@types/inquirer": "^0.0.43",
"@types/js-yaml": "^3.12.1",
"@types/jsonwebtoken": "^8.3.0",
"@types/lodash": "^4.14.120",
"@types/method-override": "^0.0.31",
"@types/mime-types": "^2.1.0",
"@types/mongoose": "^5.3.12",
"@types/nodemailer": "^4.6.6",
"@types/nunjucks": "^3.1.0",
"@types/passport": "^1.0.0",
"@types/passport-jwt": "^3.0.1",
"@types/uuid": "^3.4.4",
"@types/validator": "^10.9.0",
"@types/yaml": "^1.0.2",
"awesome-typescript-loader": "^5.2.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-preset-env": "^1.7.0",
"backpack-core": "^0.8.3",
"kenote-deploy-kit": "^1.2.1",
"node-sass": "^4.11.0",
"sass-loader": "^7.1.0",
"ts-loader": "^5.3.3",
"ts-node": "^8.1.0",
"typescript": "^3.3.1"
}
}