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
| {
| "name": "xzs-admin",
| "version": "3.9.0",
| "author": "武汉思维跳跃科技有限公司",
| "description": "学之思管理系统",
| "license": "AGPL-3.0",
| "private": true,
| "homepage": "https://www.mindskip.net/xzs.html",
| "scripts": {
| "serve": "vue-cli-service serve --mode dev",
| "build": "vue-cli-service build --mode prod",
| "build:dev": "vue-cli-service build --mode dev",
| "build:test": "vue-cli-service build --mode test",
| "build:pre": "vue-cli-service build --mode pre",
| "build:prod": "vue-cli-service build --mode prod",
| "lint": "vue-cli-service lint"
| },
| "repository": {
| "type": "git",
| "url": "git+https://gitee.com/mindskip/xzs-mysql.git"
| },
| "bugs": {
| "url": "https://gitee.com/mindskip/xzs-mysql/issues",
| "email": "mindskip@qq.com"
| },
| "husky": {
| "hooks": {
| "pre-commit": "lint-staged"
| }
| },
| "lint-staged": {
| "src/**/*.{js,vue}": [
| "eslint --fix",
| "git add"
| ]
| },
| "dependencies": {
| "@vue-office/pdf": "^2.0.2",
| "axios": "^0.19.2",
| "clipboard": "^2.0.11",
| "codemirror": "^5.65.16",
| "core-js": "^3.37.1",
| "driver.js": "^0.9.8",
| "dropzone": "^5.9.3",
| "echarts": "^5.5.0",
| "element-ui": "^2.15.14",
| "file-saver": "^2.0.5",
| "fuse.js": "^6.6.2",
| "husky": "^7.0.4",
| "js-cookie": "2.2.0",
| "jsonlint": "^1.6.3",
| "jszip": "^3.10.1",
| "normalize.css": "8.0.1",
| "nprogress": "0.2.0",
| "path-to-regexp": "^6.2.2",
| "screenfull": "^5.2.0",
| "script-loader": "^0.7.2",
| "vue": "^2.7.16",
| "vue-count-to": "^1.0.13",
| "vue-router": "^3.6.5",
| "vuex": "^3.6.2",
| "xlsx": "^0.18.5"
| },
| "devDependencies": {
| "@vue/cli-plugin-babel": "^4.5.19",
| "@vue/cli-plugin-eslint": "^4.5.19",
| "@vue/cli-plugin-router": "^4.5.19",
| "@vue/cli-plugin-vuex": "^4.5.19",
| "@vue/cli-service": "^4.5.19",
| "@vue/eslint-config-standard": "^4.0.0",
| "babel-eslint": "^10.1.0",
| "eslint": "^5.16.0",
| "eslint-plugin-vue": "^5.2.3",
| "node-sass": "^6.0.1",
| "sass-loader": "^10.5.2",
| "svg-sprite-loader": "4.1.6",
| "tailwindcss": "^3.4.3",
| "vue-template-compiler": "^2.7.16"
| }
| }
|
|