-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.15 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.15 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
74
75
76
77
78
{
"name": "nuxt-app",
"private": true,
"type": "module",
"packageManager": "pnpm@10.6.3",
"scripts": {
"preinstall": "npx only-allow pnpm",
"prebuild": "prisma generate",
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"prisma:db:seed": "prisma db seed",
"prisma:db:push": "prisma db push",
"setup": "pnpm install && pnpm run prisma:db:push && pnpm run prisma:db:seed"
},
"dependencies": {
"@google/generative-ai": "^0.24.0",
"@hebilicious/vue-query-nuxt": "^0.3.0",
"@internationalized/date": "^3.7.0",
"@nuxtjs/axios": "^5.13.6",
"@nuxtjs/tailwindcss": "^6.13.1",
"@pinia/nuxt": "^0.10.1",
"@primeuix/themes": "^1.0.0",
"@prisma/client": "^6.5.0",
"@sidebase/nuxt-auth": "^0.10.1",
"@tanstack/vue-query": "^5.69.0",
"@tanstack/vue-table": "^8.21.2",
"@vee-validate/zod": "^4.15.0",
"@vue/devtools-api": "^7.7.2",
"@vueuse/core": "^13.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"embla-carousel": "^8.5.2",
"embla-carousel-autoplay": "^8.5.2",
"embla-carousel-vue": "^8.5.2",
"lucide-vue-next": "^0.479.0",
"next-auth": "^4.21.1",
"nuxt": "^3.16.0",
"nuxt-auth-utils": "^0.5.16",
"pinia": "^3.0.1",
"pinia-plugin-persistedstate": "^4.2.0",
"primeicons": "^7.0.0",
"primevue": "^4.3.1",
"reka-ui": "^2.0.2",
"shadcn-nuxt": "^1.0.3",
"tailwind-merge": "^3.0.2",
"tailwindcss-animate": "^1.0.7",
"vee-validate": "^4.15.0",
"vue": "^3.5.13",
"vue-router": "^4.5.0",
"vue-tsc": "^2.2.8",
"zod": "^3.24.2"
},
"devDependencies": {
"@faker-js/faker": "^9.6.0",
"@primevue/nuxt-module": "^4.3.1",
"autoprefixer": "^10.4.21",
"only-allow": "^1.2.1",
"postcss": "^8.5.3",
"prisma": "^6.5.0",
"tailwindcss": "^3.4.17",
"tsx": "^4.19.3"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"pnpm": {
"ignoredBuiltDependencies": [
"@hebilicious/vue-query-nuxt",
"esbuild"
],
"onlyBuiltDependencies": [
"@hebilicious/vue-query-nuxt"
]
}
}