-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
85 lines (85 loc) · 2.46 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
{
"name": "vue3_vite4_ts_pinia_template",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build:dev": "vue-tsc && vite build --mode development",
"build:pro": "vue-tsc && vite build --mode production",
"preview": "vite preview",
"prettier": "prettier --write .",
"lint": "eslint src --no-fix --ext .ts,.tsx,.vue,.js,.jsx",
"lint:fix": "eslint src --fix --ext .ts,.tsx,.vue,.js,.jsx",
"style-lint": "stylelint src/**/*.{css,sass,scss,less,vue}",
"style-lint:fix": "stylelint src/**/*.{css,sass,scss,less,vue} --fix",
"commit": "git-cz",
"postinstall": "husky install",
"prepare": "husky install"
},
"dependencies": {
"@vicons/ionicons5": "^0.12.0",
"@vueuse/core": "^9.12.0",
"axios": "^1.2.1",
"buffer": "^6.0.3",
"naive-ui": "^2.34.2",
"nprogress": "^0.2.0",
"pinia": "^2.0.28",
"pinia-plugin-persist": "^1.0.0",
"pinia-plugin-persistedstate": "^3.0.2",
"vfonts": "^0.0.3",
"vue": "^3.2.45",
"vue-router": "^4.1.6"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@types/node": "^18.13.0",
"@types/nprogress": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"@vitejs/plugin-vue": "^4.0.0",
"commitizen": "^4.2.6",
"cz-conventional-changelog": "^3.3.0",
"dart-sass": "^1.25.0",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.8.0",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"postcss-html": "^1.5.0",
"prettier": "^2.8.1",
"sass": "^1.56.2",
"stylelint": "^14.16.0",
"stylelint-config-css-modules": "^4.1.0",
"stylelint-config-standard": "^29.0.0",
"stylelint-config-standard-vue": "^1.0.0",
"stylelint-less": "^1.0.6",
"stylelint-order": "^5.0.0",
"stylelint-scss": "^4.3.0",
"typescript": "^4.9.3",
"unplugin-auto-import": "^0.13.0",
"unplugin-vue-components": "^0.23.0",
"vite": "^4.0.0",
"vite-plugin-compression": "^0.5.1",
"vue-tsc": "^1.0.11",
"yorkie": "^2.0.0"
},
"lint-staged": {
"*.{ts,tsx,vue,js,jsx}": [
"npm run lint"
],
"*.{css,sass,scss,less,vue}": [
"npm run style-lint"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"prettier": {
"semi": false
}
}