-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.31 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.31 KB
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
{
"name": "vue-typescript-stater",
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "run-p type-check build-only",
"preview": "vite preview",
"build:only": "vite build",
"build:icons": "tsx src/plugins/assets/build-icons.ts",
"typecheck": "vue-tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write src/",
"test:unit": "vitest",
"test:e2e": "start-server-and-test preview http://localhost:4173 'cypress run --e2e'",
"test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'",
"postinstall": "run-p build:icons",
"generate:api": "openapi-typescript http://localhost:8000/api/docs-yaml -o src/generated/api-schema.d.ts"
},
"dependencies": {
"@unocss/reset": "^0.58.4",
"@vueuse/core": "^10.7.2",
"@vueuse/integrations": "^10.8.0",
"openapi-fetch": "^0.9.2",
"openapi-typescript-helpers": "^0.0.7",
"pinia": "^2.1.7",
"ufo": "^1.5.3",
"universal-cookie": "^7.1.0",
"valibot": "^0.26.0",
"vue": "^3.4.15",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@iconify/tools": "^4.0.0",
"@iconify/types": "^2.0.0",
"@iconify/utils": "^2.1.16",
"@iconify/vue": "^4.1.1",
"@sxzz/eslint-config": "^3.7.6",
"@sxzz/prettier-config": "^2.0.0",
"@types/node": "^20.11.5",
"@vitejs/plugin-vue": "^5.0.3",
"@vue/compiler-sfc": "^3.4.15",
"@vue/test-utils": "^2.4.3",
"@vue/typescript-plugin": "^2.1.6",
"cypress": "^13.6.3",
"eslint": "^8.56.0",
"jsdom": "^24.0.0",
"npm-run-all": "^4.1.5",
"openapi-typescript": "^6.7.4",
"picocolors": "^1.0.0",
"prettier": "^3.2.4",
"start-server-and-test": "^2.0.3",
"ts-reset": "^0.0.1",
"tsx": "^4.7.1",
"typescript": "^5.3.3",
"unocss": "^0.58.4",
"unplugin-auto-import": "^0.17.3",
"unplugin-vue-components": "^0.26.0",
"unplugin-vue-router": "^0.7.0",
"vite": "^5.0.12",
"vite-plugin-pages": "^0.32.0",
"vite-plugin-vue-devtools": "^7.0.11",
"vite-plugin-vue-layouts": "^0.11.0",
"vite-plugin-webfont-dl": "^3.9.1",
"vitest": "^1.2.1",
"vue-tsc": "^1.8.27"
},
"simple-git-hooks": {
"commit-msg": "node src/scripts/verify-commit.js"
},
"prettier": "@sxzz/prettier-config"
}