-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
63 lines (63 loc) · 1.96 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
{
"name": "vue-vite-element-plus-starter",
"version": "0.0.2",
"private": true,
"scripts": {
"dev": "vite",
"preview": "vite preview",
"prod": "run-p type-check build-prod",
"rd": "run-p type-check build-rd",
"qa": "run-p type-check build-qa",
"build-prod": "vite build --mode prod",
"build-rd": "vite build --mode rd",
"build-qa": "vite build --mode qa",
"type-check": "vue-tsc --noEmit",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .eslintignore",
"format": "prettier --write src/",
"prepare": "husky install",
"commit": "cz",
"changelog": "conventional-changelog -p typescript -i CHANGELOG.md -s -r 0",
"changelog-docs": "conventional-changelog -p typescript -i docs/CHANGELOG.md -s -r 0",
"docs": "docsify serve docs"
},
"dependencies": {
"axios": "^1.3.4",
"element-plus": "^2.3.1",
"normalize.css": "^8.0.1",
"pinia": "^2.0.32",
"vue": "^3.2.47",
"vue-router": "^4.1.6"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@rushstack/eslint-patch": "^1.2.0",
"@types/node": "^18.14.2",
"@vitejs/plugin-vue": "^4.0.0",
"@vitejs/plugin-vue-jsx": "^3.0.0",
"@vue/eslint-config-prettier": "^7.1.0",
"@vue/eslint-config-typescript": "^11.0.2",
"@vue/tsconfig": "^0.1.3",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.34.0",
"eslint-plugin-vue": "^9.9.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"npm-run-all": "^4.1.5",
"prettier": "2.8.5",
"rollup-plugin-visualizer": "^5.9.0",
"sass": "^1.59.3",
"typescript": "~4.8.4",
"unplugin-auto-import": "^0.15.1",
"unplugin-vue-components": "^0.24.1",
"vite": "^4.1.4",
"vite-plugin-compression": "^0.5.1",
"vue-tsc": "^1.2.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}