-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.39 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.39 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
{
"name": "aaaimx-admin",
"version": "1.4.2",
"private": true,
"scripts": {
"serve": "vue-cli-service serve --mode development",
"stage": "vue-cli-service serve --mode staging",
"preview": "vue-cli-service serve --mode preview",
"build": "vue-cli-service build --modern",
"lint": "vue-cli-service lint",
"build:gh-pages": "cross-env DEPLOY_ENV=GH_PAGES npm run build",
"deploy:gh-pages": "cross-env NODE_DEBUG=gh-pages gh-pages -d dist -t",
"publish": "npm run build:gh-pages && npm run deploy:gh-pages"
},
"dependencies": {
"@ckeditor/ckeditor5-build-classic": "^24.0.0",
"@ckeditor/ckeditor5-theme-lark": "^24.0.0",
"@ckeditor/ckeditor5-vue2": "^1.0.5",
"axios": "^0.20.0",
"buefy": "^0.9.3",
"bulma": "^0.9.0",
"chart.js": "^2.9.3",
"core-js": "^3.6.5",
"dayjs": "^1.8.35",
"file-saver": "^2.0.5",
"js-cookie": "^2.2.1",
"jspdf": "^2.2.0",
"jwt-decode": "^3.1.2",
"lodash": "^4.17.20",
"numeral": "^2.0.6",
"perfect-scrollbar": "^1.5.0",
"register-service-worker": "^1.7.1",
"spinkit": "^1.2.5",
"vee-validate": "^3.4.5",
"vue": "^2.6.12",
"vue-chartjs": "^3.5.0",
"vue-copy-to-clipboard": "^1.0.3",
"vue-json-excel": "^0.3.0",
"vue-linkify": "^1.0.1",
"vue-router": "^3.4.3",
"vuex": "^3.5.1",
"xlsx": "^0.16.9"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.5.4",
"@vue/cli-plugin-eslint": "~4.5.4",
"@vue/cli-plugin-pwa": "~4.5.4",
"@vue/cli-plugin-router": "~4.5.4",
"@vue/cli-plugin-vuex": "~4.5.4",
"@vue/cli-service": "~4.5.4",
"@vue/eslint-config-standard": "^5.1.2",
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.3",
"eslint": "^7.8.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^6.2.2",
"gh-pages": "^3.1.0",
"sass": "^1.26.10",
"sass-loader": "^10.0.2",
"vue-template-compiler": "^2.6.12"
},
"eslintConfig": {
"root": true,
"globals": {
"window": true
},
"env": {
"browser": true,
"node": true
},
"extends": [
"plugin:vue/essential",
"@vue/standard"
],
"parserOptions": {
"parser": "babel-eslint"
},
"rules": {}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}