forked from zce/fearless
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.42 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
{
"name": "fearless",
"version": "0.1.0",
"private": true,
"description": "A dashboard scaffolding based on Vue.js 3.x & TypeScript created by Vite.",
"keywords": [
"fearless",
"dashboard",
"vue",
"vuejs",
"vue3",
"typescript",
"vite",
"zce"
],
"repository": "zce/fearless",
"license": "MIT",
"author": "zce <[email protected]> (https://zce.me)",
"scripts": {
"lint": "eslint src api mock --ext .ts,.vue --fix",
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"serve": "vite preview",
"prepare": "husky install .github/husky"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{ts,vue}": "eslint --fix"
},
"renovate": {
"extends": [
"zce"
]
},
"devDependencies": {
"@commitlint/cli": "16.0.0",
"@commitlint/config-conventional": "16.0.0",
"@types/express": "4.17.13",
"@vicons/ionicons5": "0.11.0",
"@vitejs/plugin-vue": "2.0.1",
"@vue/compiler-sfc": "3.2.26",
"eslint": "8.5.0",
"eslint-config-standard": "16.0.3",
"eslint-config-standard-ts": "21.0.0",
"eslint-plugin-vue": "8.2.0",
"express": "4.17.2",
"husky": "7.0.4",
"ky": "0.28.7",
"lint-staged": "12.1.4",
"naive-ui": "2.23.1",
"typescript": "4.5.4",
"vite": "2.7.7",
"vue": "3.2.26",
"vue-router": "4.0.12",
"vue-tsc": "0.30.1",
"vuex": "4.0.2"
}
}