-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.45 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
{
"name": "customized-vue3-typescript-frontend-project-base",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test:unit": "vitest",
"build-only": "vite build",
"type-check": "vue-tsc --build --force",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write src/",
"spell-check": "cspell 'src' 'plugins' --gitignore --no-cache --show-suggestions --no-progress --no-must-find-files",
"pipelines": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix && vue-tsc --build --force",
"prepare": "husky install"
},
"lint-staged": {
"*.{ts,js,jsx,vue}": [
"eslint --fix",
"cspell --gitignore --no-cache --no-must-find-files"
]
},
"dependencies": {
"@element-plus/icons-vue": "^2.3.1",
"@types/lodash-es": "^4.17.12",
"@vueuse/core": "^10.7.2",
"axios": "^1.6.5",
"axios-retry": "^3.9.1",
"crypto-js": "^4.2.0",
"dayjs": "^1.11.10",
"decimal.js": "^10.4.3",
"element-plus": "^2.5.3",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"normalize.css": "^8.0.1",
"pinia": "^2.1.7",
"vue": "^3.4.15",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@commitlint/cli": "^18.5.0",
"@commitlint/config-conventional": "^18.5.0",
"@commitlint/types": "^18.4.4",
"@iconify/json": "^2.2.172",
"@rushstack/eslint-patch": "^1.7.0",
"@tsconfig/node18": "^18.2.2",
"@types/jsdom": "^21.1.6",
"@types/lodash": "^4.14.202",
"@types/node": "^18.19.8",
"@vitejs/plugin-vue": "^4.6.2",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"@vue/compiler-sfc": "^3.4.15",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/test-utils": "^2.4.3",
"@vue/tsconfig": "^0.5.1",
"autoprefixer": "^10.4.17",
"cspell": "^8.3.2",
"eslint": "^8.56.0",
"eslint-plugin-vue": "^9.20.1",
"husky": "^8.0.0",
"jsdom": "^23.2.0",
"lint-staged": "^13.3.0",
"npm-run-all2": "^6.1.1",
"prettier": "^3.2.4",
"sass": "^1.70.0",
"typescript": "~5.3.3",
"unplugin-auto-import": "^0.17.3",
"unplugin-icons": "^0.18.2",
"unplugin-vue-components": "^0.26.0",
"vite": "^5.0.12",
"vite-plugin-compression": "^0.5.1",
"vite-svg-loader": "^5.1.0",
"vitest": "^1.2.1",
"vue-tsc": "^1.8.27"
}
}