-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.01 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
{
"name": "vue3-template",
"private": true,
"version": "0.0.4",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"format": "prettier --write \"./**/*.{html,vue,ts,js,json,md}\"",
"lint": "eslint . --ext .vue,.js,.ts,.jsx,.tsx --fix",
"prepare": "husky install",
"commit": "npx cz",
"release": "standard-version"
},
"lint-staged": {
"*.{vue,js,ts,jsx,tsx,json}": "eslint --fix",
"*.md": [
"prettier --write"
]
},
"dependencies": {
"@types/node": "^20.6.3",
"axios": "^1.5.0",
"element-plus": "^2.3.14",
"pinia": "^2.1.6",
"sass": "^1.68.0",
"scss": "^0.2.4",
"vue": "^3.3.4",
"vue-router": "4"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@vitejs/plugin-vue": "^4.2.3",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^39.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-vue": "^9.17.0",
"husky": "^8.0.3",
"postcss": "^8.4.30",
"postcss-html": "^1.5.0",
"prettier": "^3.0.3",
"standard-version": "^9.5.0",
"stylelint": "^15.10.3",
"stylelint-config-html": "^1.1.0",
"stylelint-config-recess-order": "^4.3.0",
"stylelint-config-recommended-scss": "^13.0.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-config-standard-scss": "^11.0.0",
"typescript": "^5.0.2",
"unplugin-auto-import": "^0.16.6",
"unplugin-vue-components": "^0.25.2",
"vite": "^4.4.5",
"vue-tsc": "^1.8.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}