-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 2.03 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
{
"name": "raptr",
"private": true,
"version": "0.1.0-beta.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc -b && vite build",
"preview": "vite preview",
"fetch:openapi": "curl -s http://localhost:8000/openapi.json -o openapi.json",
"gen:types": "bunx openapi-typescript ./openapi.json -o ./src/types/schema.ts",
"gen:zod": "bunx openapi-zod-client ./openapi.json -o ./src/types/zod.ts --export-schemas",
"update:api": "bun run fetch:openapi && bun run gen:types && bun run gen:zod",
"lint": "biome check .",
"lint:fix": "biome check --write ."
},
"dependencies": {
"@internationalized/date": "^3.12.1",
"@tailwindcss/vite": "^4.2.4",
"@tanstack/vue-table": "^8.21.3",
"@vee-validate/zod": "^4.15.1",
"@vueuse/core": "^14.2.1",
"axios": "^1.15.2",
"chart.js": "^4.5.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dompurify": "^3.4.1",
"lucide-vue-next": "^0.562.0",
"marked": "^18.0.3",
"oidc-client-ts": "^3.5.0",
"pinia": "^3.0.4",
"qrcode": "^1.5.4",
"reka-ui": "^2.9.6",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.4",
"vee-validate": "^4.15.1",
"vue": "^3.5.33",
"vue-chartjs": "^5.3.3",
"vue-input-otp": "^0.3.2",
"vue-router": "^4.6.4",
"vue-sonner": "^2.0.9",
"vuedraggable": "^4.1.0",
"zod": "3.25.76"
},
"devDependencies": {
"@biomejs/biome": "^2.4.13",
"@types/marked": "^6.0.0",
"@types/node": "^24.12.2",
"@types/qrcode": "^1.5.6",
"@vitejs/plugin-vue": "^6.0.6",
"@vue/tsconfig": "^0.8.1",
"openapi-typescript": "^7.13.0",
"openapi-zod-client": "^1.18.3",
"tw-animate-css": "^1.4.0",
"typescript": "~5.9.3",
"vite": "^7.3.2",
"vue-tsc": "^3.2.7"
},
"overrides": {
"handlebars": "^4.7.9"
}
}