-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.28 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
{
"name": "demo",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint src",
"fix": "eslint src --fix",
"format": "prettier --write \"./**/*.{html,vue,js,ts,json,md}\"",
"prepare": "husky install",
"commitlint": "commitlint --config commitlint.config.cjs -e -V",
"lint:style": "stylelint src/**/*.{vue,scss,css,sass,less} --fix",
"prettier": "prettier --write ."
},
"dependencies": {
"@highlightjs/vue-plugin": "^2.1.0",
"axios": "^1.4.0",
"echarts": "^5.2.0",
"echarts-gl": "^2.0.8",
"element-plus": "^2.2.17",
"highlight.js": "^11.6.0",
"jsencrypt": "^3.3.2",
"mitt": "^3.0.0",
"moment": "^2.29.4",
"pinia": "^2.0.23",
"vue": "^3.3.11",
"vue-router": "^4.0.0-0",
"vue3-moveable": "^0.26.2",
"x-data-spreadsheet": "^1.1.9",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@commitlint/cli": "^18.4.4",
"@commitlint/config-conventional": "^18.4.4",
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"@vitejs/plugin-vue": "^4.5.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-vue": "^9.19.2",
"husky": "^8.0.0",
"less": "^4.2.0",
"less-loader": "^11.1.4",
"postcss": "^8.4.12",
"postcss-html": "^1.3.0",
"prettier": "^3.1.1",
"rollup-plugin-external-globals": "^0.9.2",
"stylelint": "^14.6.0",
"stylelint-config-html": "^1.0.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended": "^7.0.0",
"stylelint-config-recommended-less": "^1.0.4",
"stylelint-config-recommended-scss": "^7.0.0",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard": "^25.0.0",
"stylelint-config-standard-scss": "^4.0.0",
"stylelint-less": "^1.0.5",
"stylelint-order": "^6.0.4",
"stylelint-processor-styled-components": "^1.10.0",
"typescript": "^5.2.2",
"unplugin-auto-import": "^0.17.5",
"unplugin-vue-components": "^0.26.0",
"vite": "^5.0.8",
"vite-plugin-cdn-import": "^0.3.5",
"vite-plugin-html": "^3.2.2",
"vite-plugin-require-transform": "^1.0.21",
"vite-plugin-vue-setup-extend": "^0.4.0",
"vue-tsc": "^1.8.25"
}
}