-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
80 lines (80 loc) · 2.26 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
{
"name": "the1068fm",
"type": "module",
"version": "2.0.1",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"typecheck": "nuxt typecheck",
"auth:genKey": "tsx scripts/genKey.ts",
"db:studio": "drizzle-kit studio",
"db:push": "drizzle-kit push",
"db:seed": "bun run scripts/seed.ts",
"db:reset": "bun run scripts/reset.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@nuxt/icon": "^1.10.3",
"@nuxt/image": "^1.9.0",
"@nuxtjs/color-mode": "^3.5.2",
"@nuxtjs/tailwindcss": "^6.13.1",
"@pinia/nuxt": "^0.9.0",
"@popperjs/core": "^2.11.8",
"@radix-icons/vue": "^1.0.0",
"@tanstack/vue-query": "^5.64.2",
"@tanstack/vue-table": "^8.20.5",
"@trpc/client": "^10.45.2",
"@trpc/server": "^10.45.2",
"@unovis/ts": "^1.5.0",
"@unovis/vue": "^1.5.0",
"@vee-validate/nuxt": "^4.15.0",
"@vee-validate/zod": "^4.15.0",
"@vueuse/integrations": "^12.5.0",
"@ztl-uwu/v-calendar": "^3.1.3",
"d3": "^7.9.0",
"dotenv": "^16.4.7",
"drizzle-orm": "^0.38.4",
"drizzle-seed": "^0.3.0",
"fuse.js": "^7.0.0",
"jose": "^5.9.6",
"nuxt": "^3.15.2",
"pg": "^8.13.1",
"pinia": "^2.3.1",
"pinia-plugin-persistedstate": "^4.2.0",
"radix-vue": "^1.9.12",
"shadcn-nuxt": "^0.11.3",
"superjson": "^2.2.2",
"trpc-nuxt": "^0.10.22",
"vaul-vue": "^0.2.0",
"vee-validate": "^4.15.0",
"vue": "latest",
"vue-sonner": "^1.3.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@antfu/eslint-config": "^3.16.0",
"@electric-sql/pglite": "^0.2.16",
"@iconify-json/lucide": "^1.2.24",
"@tailwindcss/typography": "^0.5.16",
"@types/pg": "^8.11.10",
"@unocss/eslint-plugin": "^65.4.3",
"@vueuse/core": "^12.5.0",
"@vueuse/nuxt": "^12.5.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-kit": "^0.30.2",
"eslint": "^9.18.0",
"eslint-plugin-format": "^1.0.1",
"eslint-plugin-tailwindcss": "^3.18.0",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.19.2",
"typescript": "5.6.3",
"vue-tsc": "2.1.10"
}
}