-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
114 lines (114 loc) · 2.94 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "vite-taicu",
"version": "1.1",
"private": false,
"description": "一个 vue3 开发模版(vite,pinia,ts,eslint,prettier,lint-staged)",
"keywords": [
"vue3",
"vite",
"pinia",
"eslint",
"typescript",
"prettier"
],
"homepage": "https://taicu.soulfree.cn/",
"repository": {
"type": "git",
"url": "https://github.com/AxyLm/vite-taicu"
},
"license": "MIT",
"author": {
"name": "wy",
"email": "[email protected]",
"url": "https://github.com/AxyLm"
},
"contributors": [],
"scripts": {
"prebuild": "lint-staged && vue-tsc --noEmit ",
"build": "vite build",
"clean": "rimraf dist node_modules",
"dev": "vite",
"lint": "eslint . --fix",
"lint:format": "prettier '{src/**/*.{js,ts,tsx,md,html,less,css,json,vue},package.json,*.config.js,locales/*.yml}' --write",
"lint:quick": "pretty-quick --verbose",
"lint:staged": "lint-staged",
"prepare": "husky install",
"preview": "vite preview"
},
"lint-staged": {
"src/**/*.{js,ts,jsx,tsx,,vue}": [
"eslint --fix",
"prettier --write"
],
"src/**/*{less,css,scss,json,html}": [
"prettier --write"
],
"*.{js,ts,json}": [
"prettier --write"
],
"locales/*.yml": [
"prettier --write"
],
"package.json": [
"prettier --write"
],
"*.md": [
"prettier --write"
],
"{*.json,**/*.json,!(package)*.json,*.code-snippets,.!(browserslist)*rc,.eslintrc}": [
"prettier --write--parser json"
]
},
"browserslist": [
"> 1%",
"last 5 Chrome versions",
"not ie <= 11"
],
"dependencies": {
"less": "^4.1.2",
"nprogress": "^0.2.0",
"pinia": "^2.0.21",
"postcss": "^8.4.16",
"tailwindcss": "^3.1.8",
"vue": "^3.2.25",
"vue-i18n": "9",
"vue-router": "^4.0.15"
},
"devDependencies": {
"@iconify/json": "^2.1.43",
"@intlify/vite-plugin-vue-i18n": "^3.4.0",
"@types/node": "^17.0.38",
"@types/postcss-import": "^14.0.0",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@vitejs/plugin-vue": "^2.3.3",
"@vueuse/core": "^8.4.2",
"autoprefixer": "^10.4.7",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-tailwindcss": "^3.6.0",
"eslint-plugin-vue": "^9.2.0",
"husky": "^8.0.1",
"import": "^0.0.6",
"lint-staged": "^13.0.3",
"path": "^0.12.7",
"postcss-import": "^14.1.0",
"prettier": "^2.7.1",
"prettier-eslint": "^15.0.1",
"prettier-plugin-packagejson": "^2.2.18",
"prettier-plugin-tailwindcss": "^0.1.12",
"pretty-quick": "^3.1.3",
"rimraf": "^3.0.2",
"typescript": "^4.5.4",
"unplugin-auto-import": "^0.7.1",
"unplugin-icons": "^0.14.3",
"unplugin-vue-components": "^0.19.5",
"vite": "3.1.2",
"vue-eslint-parser": "^9.0.3",
"vue-tsc": "^0.34.7"
},
"engines": {
"node": ">= 14.0.0"
}
}