-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·84 lines (84 loc) · 2.8 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
{
"name": "vue-admin",
"version": "0.0.0",
"scripts": {
"serve": "serve ./dist",
"test": "vitest src/",
"dev": "vite",
"build": "rimraf dist && cross-env NODE_ENV=production vite build",
"lint:eslint": "eslint --cache --max-warnings 0 \"{src,mock}/**/*.{vue,ts,tsx}\" --fix",
"lint:stylelint": "stylelint --cache --fix \"**/*.{vue,css,scss,postcss,less}\" --cache --cache-location node_modules/.cache/stylelint/",
"lint:prettier": "prettier --write \"src/**/*.{js,json,tsx,css,less,scss,vue,html,md}\"",
"lint:lint-staged": "lint-staged -c ./.husky/.lintstagedrc.js",
"lint": "pnpm lint:eslint && pnpm lint:prettier&& pnpm lint:stylelint",
"preinstall": "npx only-allow pnpm",
"deploy": "bash deploy.sh",
"prepare": "husky install"
},
"dependencies": {
"@vueuse/core": "^8.2.6",
"@vueuse/motion": "^2.0.0-beta.12",
"axios": "^0.27.2",
"echarts": "^5.3.2",
"echarts-map-chinajs": "^1.0.2",
"element-plus": "^2.1.10",
"lodash-es": "^4.17.21",
"nprogress": "^0.2.0",
"path-to-regexp": "^6.2.1",
"pinia": "^2.0.13",
"qs": "^6.10.5",
"uuid": "^8.3.2",
"vue": "^3.2.33",
"vue-i18n": "^9.1.10",
"vue-router": "^4.0.14",
"vue3-contextmenu": "^0.2.12",
"xgplayer": "^2.31.6"
},
"devDependencies": {
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@iconify/vue": "^3.2.1",
"@intlify/vite-plugin-vue-i18n": "^3.4.0",
"@types/node": "^16.11.27",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"@vitejs/plugin-vue": "^2.3.1",
"@vitejs/plugin-vue-jsx": "^1.3.10",
"@vue/tsconfig": "^0.1.3",
"@zougt/some-loader-utils": "^1.4.3",
"@zougt/vite-plugin-theme-preprocessor": "^1.4.5",
"autoprefixer": "^10.4.7",
"color": "^4.2.3",
"cross-env": "^7.0.3",
"eslint": "^8.13.0",
"eslint-plugin-vue": "^8.6.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.0",
"postcss": "^8.4.13",
"postcss-html": "^1.4.1",
"postcss-scss": "^4.0.4",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"sass": "^1.53.0",
"serve": "^14.2.0",
"stylelint": "^14.8.2",
"stylelint-config-html": "^1.0.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended": "^7.0.0",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard": "^25.0.0",
"stylelint-order": "^5.0.0",
"typescript": "~4.6.3",
"unplugin-auto-import": "^0.9.2",
"unplugin-element-plus": "^0.4.0",
"unplugin-vue-define-options": "^0.6.1",
"vite": "^2.9.5",
"vite-plugin-html": "^3.2.0",
"vite-plugin-mkcert": "^1.8.1",
"vite-plugin-windicss": "^1.8.4",
"vite-svg-loader": "^3.2.0",
"vitest": "^0.12.9",
"vue-tsc": "^0.34.7",
"windicss": "^3.5.1"
}
}