-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.54 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 3.54 KB
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
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "jerry-serc",
"version": "0.1.0",
"description": "Nuxt.js project",
"author": "jerry shi",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development backpack dev",
"build:prod": "cross-env NODE_ENV=production nuxt build && cross-env NODE_ENV=production backpack build",
"build:test": "cross-env NODE_ENV=test nuxt build && cross-env NODE_ENV=test backpack build",
"start:prod": "pm2 start ecosystem.config.js --env production",
"start:test": "pm2 start ecosystem.config.js --env test",
"publish:prod": "npm run build:prod && npm run start:prod",
"publish:test": "npm run build:test && npm run start:test",
"generate": "nuxt generate",
"precommit": "npm run lint",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"dev-debug": "node node_modules/.bin/backpack dev --inspect-brk",
"test": "nuxt build && ava --verbose --serial"
},
"ava": {
"require": [
"babel-register"
]
},
"dependencies": {
"@koa/cors": "^2.2.1",
"@nuxtjs/axios": "^5.3.1",
"@nuxtjs/router": "^1.0.1",
"area-data": "^5.0.6",
"axios": "^0.21.1",
"bcrypt": "^5.0.0",
"casbin": "^1.0.7",
"clipboard": "^1.7.1",
"countup": "^1.8.2",
"cropperjs": "^1.2.2",
"cross-env": "^5.0.1",
"crypto": "^1.0.1",
"dayjs": "^1.7.5",
"echarts": "^3.8.5",
"formats": "^1.0.0",
"html2canvas": "^0.5.0-beta4",
"iview": "^2.14.2",
"js-cookie": "^2.2.0",
"jsonwebtoken": "^8.3.0",
"jwks-rsa": "^1.3.0",
"koa": "^2.4.1",
"koa-bodyparser": "^4.2.1",
"koa-jwt": "^3.5.0",
"koa-logger": "^3.2.0",
"koa-router": "^7.4.0",
"koa-session": "^5.8.2",
"koa-session2": "^2.2.6",
"koa-static": "^5.0.0",
"koa-unless": "^1.0.7",
"lodash": "^4.17.19",
"mongoose": "^5.7.5",
"nuxt": "^1.4.2",
"qiniu": "^7.2.1",
"qiniu-js": "^2.4.0",
"qiniu-uptoken": "^1.0.8",
"quill-image-drop-module": "^1.0.3",
"quill-image-extend-module": "^1.1.2",
"quill-image-resize-module": "^3.0.0",
"ramda": "^0.25.0",
"random-token": "0.0.8",
"rasterizehtml": "^1.2.4",
"request-promise": "^4.2.2",
"shelljs": "^0.8.2",
"simplemde": "^1.11.2",
"sortablejs": "^1.7.0",
"tinymce": "^5.6.0",
"tinymce-vue-2": "0.0.5",
"vue-quill-editor": "^3.0.6",
"vuex-persist": "^1.2.2",
"xss": "^1.0.3"
},
"devDependencies": {
"autoprefixer-loader": "^3.2.0",
"ava": "^0.25.0",
"axios-mock-adapter": "^1.15.0",
"babel": "^6.23.0",
"babel-core": "^6.23.1",
"babel-eslint": "^8.2.1",
"babel-loader": "^7.1.2",
"babel-plugin-module-alias": "^1.6.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-runtime": "^6.12.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-latest-node": "^1.0.0",
"babel-preset-stage-3": "^6.24.1",
"babel-runtime": "^6.11.6",
"backpack-core": "^0.4.1",
"eslint": "^4.18.2",
"eslint-config-standard": "^10.2.1",
"eslint-loader": "^1.9.0",
"eslint-plugin-html": "^3.1.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"jsdom": "^11.11.0",
"less": "^2.7.3",
"less-loader": "^4.0.5",
"nodemon": "^1.11.0",
"scmp": "^2.0.0",
"source-map-support": "^0.5.8",
"vue-i18n": "^7.6.0"
}
}