-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.93 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
{
"name": "blog",
"private": true,
"version": "0.0.0",
"author": {
"name": "xiaoli",
"email": "[email protected]",
"url": "https://xiaoli.vip/"
},
"type": "module",
"homepage": "https://xiaoli1999.github.io/vue3-templete",
"scripts": {
"dev": "vite",
"build:development": "vue-tsc --noEmit && vite build --mode development",
"build:production": "vue-tsc --noEmit && vite build --mode production",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"lint": "eslint src/**/*.{js,jsx,vue,ts,tsx} --fix",
"lint:css": "stylelint **/*.{vue,css,sass,scss,less} --fix",
"prepare": "husky install",
"deploy": "gh-pages -d dist"
},
"dependencies": {
"axios": "^0.27.2",
"nprogress": "^0.2.0",
"pinia": "^2.0.20",
"vue": "^3.2.41",
"vue-router": "^4.1.4"
},
"devDependencies": {
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@types/node": "^18.7.13",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"@vitejs/plugin-vue": "^3.2.0",
"@vue/eslint-config-standard": "^8.0.1",
"eslint": "^8.27.0",
"eslint-plugin-vue": "^9.7.0",
"gh-pages": "^5.0.0",
"husky": "^8.0.0",
"less": "^4.1.3",
"lint-staged": "^13.0.3",
"postcss": "^8.4.19",
"postcss-html": "^1.5.0",
"postcss-less": "^6.0.0",
"stylelint": "^14.14.1",
"stylelint-config-recommended-less": "^1.0.4",
"stylelint-config-standard": "^29.0.0",
"stylelint-config-standard-vue": "^1.0.0",
"stylelint-less": "^1.0.6",
"stylelint-order": "^5.0.0",
"typescript": "^4.8.4",
"unplugin-vue-components": "^0.22.7",
"vite": "^3.2.3",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-eslint": "^1.8.1",
"vue-tsc": "^1.0.9"
},
"lint-staged": {
"*.{js,vue}": [
"npm run lint"
],
"*.{vue,css,sass,scss,less}": [
"npm run lint:css"
]
}
}