-
Notifications
You must be signed in to change notification settings - Fork 201
/
Copy pathpackage.json
61 lines (61 loc) · 1.62 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
{
"name": "fearless",
"version": "0.2.0",
"private": true,
"description": "A dashboard scaffolding based on Vue.js 3.x & TypeScript created by Vite.",
"keywords": [
"fearless",
"dashboard",
"scaffolding",
"starter",
"template",
"vue",
"vuejs",
"vue3",
"typescript",
"vite",
"zce"
],
"repository": "zce/fearless",
"license": "MIT",
"author": "zce <w@zce.me> (https://zce.me)",
"scripts": {
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --build --force",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write src/"
},
"prettier": "@zce/prettier-config",
"dependencies": {
"@vicons/ionicons5": "^0.12.0",
"ky": "^1.2.0",
"naive-ui": "^2.37.3",
"pinia": "^2.1.7",
"vue": "^3.4.15",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.7.0",
"@tsconfig/node18": "^18.2.2",
"@types/express": "^4.17.21",
"@types/node": "^20.11.5",
"@vitejs/plugin-vue": "^5.0.3",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/tsconfig": "^0.5.1",
"@zce/prettier-config": "^0.2.0",
"eslint": "^8.56.0",
"eslint-plugin-vue": "^9.20.1",
"express": "^4.18.2",
"npm-run-all2": "^6.1.1",
"prettier": "^3.2.4",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vue-tsc": "^2.0.0"
},
"packageManager": "pnpm@8.15.5"
}