-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
89 lines (89 loc) · 2.94 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
{
"name": "curve-frontend-console",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "run-p type-check build-only",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit",
"model": "plop model",
"lint:eslint": "eslint --cache --max-warnings 0 \"{src,mock}/**/*.{vue,js,jsx,ts,tsx}\" --fix --cache --cache-location node_modules/.cache/eslint/",
"lint:prettier": "prettier --write \"src/**/*.{js,ts,json,tsx,css,less,scss,vue,html,md}\"",
"lint:stylelint": "stylelint --cache --fix \"**/*.{vue,less,postcss,css,scss}\" --cache --cache-location node_modules/.cache/stylelint/",
"lint:lint-staged": "lint-staged",
"lint": "run-s lint:eslint lint:stylelint lint:prettier",
"format": "prettier --write src/",
"prepare": "husky install"
},
"dependencies": {
"@types/diff": "^5.0.3",
"@vueuse/core": "^10.2.1",
"axios": "^1.2.2",
"dayjs": "^1.11.7",
"diff": "^5.1.0",
"echarts": "^5.4.1",
"js-cookie": "^3.0.1",
"less": "^4.1.3",
"md5": "^2.3.0",
"normalize.css": "^8.0.1",
"nprogress": "^0.2.0",
"pinia": "^2.0.30",
"postcss-preset-env": "^7.8.3",
"qs": "^6.11.1",
"sass": "^1.57.1",
"unplugin-auto-import": "^0.13.0",
"unplugin-vue-components": "^0.23.0",
"unplugin-vue-define-options": "^1.1.3",
"url-parse": "^1.5.10",
"vue": "^3.2.45",
"vue-i18n": "^9.2.2",
"vue-router": "^4.1.6"
},
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@rushstack/eslint-patch": "^1.1.4",
"@types/js-cookie": "^3.0.3",
"@types/js-md5": "^0.7.0",
"@types/node": "^18.11.18",
"@types/nprogress": "^0.2.0",
"@types/qs": "^6.9.7",
"@types/url-parse": "^1.4.8",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"@vicons/antd": "^0.12.0",
"@vicons/carbon": "^0.12.0",
"@vicons/fa": "^0.12.0",
"@vicons/fluent": "^0.12.0",
"@vicons/ionicons5": "^0.12.0",
"@vicons/material": "^0.12.0",
"@vitejs/plugin-vue": "^4.0.0",
"@vitejs/plugin-vue-jsx": "^3.0.0",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.0",
"@vue/tsconfig": "^0.1.3",
"commitlint": "^17.6.6",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-vue": "^9.15.1",
"husky": "^8.0.3",
"js-md5": "^0.7.3",
"lint-staged": "^13.2.2",
"naive-ui": "^2.34.3",
"npm-run-all": "^4.1.5",
"plop": "^3.1.1",
"prettier": "^2.7.1",
"stylelint": "^15.9.0",
"stylelint-config-recess-order": "^4.2.0",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard": "^33.0.0",
"typescript": "~4.8.4",
"vite": "^4.0.0",
"vue-eslint-parser": "^9.3.1",
"vue-tsc": "^1.2.0"
}
}