-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
96 lines (96 loc) · 3 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
86
87
88
89
90
91
92
93
94
95
96
{
"name": "sv3-template",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "vite --mode development",
"build": "vue-tsc --noEmit --skipLibCheck && vite build",
"preview": "vite preview",
"gen": "plop",
"lint:eslint": "eslint --cache --max-warnings 0 {type,build,src,mock}/**/*.{vue,ts,tsx} --fix",
"lint:prettier": "prettier --write **/*.{js,json,tsx,css,less,scss,vue,html,md}",
"lint:stylelint": "stylelint --cache --fix \"**/*.{vue,less,postcss,css,scss}\" --cache --cache-location node_modules/.cache/stylelint/",
"lint:lint-staged": "lint-staged",
"prepare": "husky install"
},
"keywords": [],
"author": "LonelySnowman",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@iconify-json/ep": "^1.1.9",
"@types/node": "^18.14.0",
"@types/nprogress": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"@vitejs/plugin-vue": "^4.0.0",
"@vitejs/plugin-vue-jsx": "^3.0.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.9.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"mockjs": "^1.1.0",
"plop": "^3.1.2",
"postcss": "^8.4.35",
"postcss-html": "^1.5.0",
"postcss-scss": "^4.0.6",
"prettier": "^2.8.4",
"sass": "^1.58.3",
"stylelint": "^14.16.1",
"stylelint-config-html": "^1.1.0",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-recommended-scss": "^8.0.0",
"stylelint-config-standard": "^29.0.0",
"stylelint-config-standard-vue": "^1.0.0",
"stylelint-order": "^6.0.2",
"stylelint-scss": "^4.4.0",
"typescript": "^4.9.5",
"unplugin-auto-import": "^0.15.0",
"unplugin-element-plus": "^0.7.0",
"unplugin-icons": "^0.15.3",
"unplugin-vue-components": "^0.24.0",
"vite": "^4.5.2",
"vite-plugin-mock": "^2.9.6",
"vue-tsc": "^1.1.4"
},
"dependencies": {
"@element-plus/icons-vue": "^2.0.10",
"@types/lodash": "^4.14.200",
"axios": "^1.6.7",
"element-plus": "^2.2.32",
"lodash": "^4.17.21",
"nprogress": "^0.2.0",
"pinia": "^2.0.32",
"pinia-plugin-persistedstate": "^3.1.0",
"vue": "^3.2.47",
"vue-router": "^4.1.6"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"{!(package)*.json,*.code-snippets,.!(browserslist)*rc}": [
"prettier --write--parser json"
],
"package.json": [
"prettier --write"
],
"*.vue": [
"eslint --fix",
"prettier --write",
"stylelint --fix"
],
"*.{scss,less,styl,html}": [
"stylelint --fix",
"prettier --write"
],
"*.md": [
"prettier --write"
]
}
}