-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
53 lines (53 loc) · 1.31 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
{
"name": "supanuxt-saas",
"version": "1.4.3",
"author": {
"name": "Michael Dausmann",
"email": "[email protected]",
"url": "https://www.michaeldausmann.com/"
},
"license": "MIT",
"private": true,
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "prisma generate && nuxt prepare",
"test": "vitest"
},
"devDependencies": {
"@nuxt/test-utils": "^3.11.0",
"@nuxtjs/supabase": "^1.1.6",
"@nuxtjs/tailwindcss": "^6.11.4",
"@prisma/client": "^5.9.1",
"@tailwindcss/typography": "^0.5.10",
"@types/node": "^20.11.19",
"nuxt": "^3.10.2",
"nuxt-icon": "^0.6.8",
"prisma": "^5.9.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"vitest": "^1.3.0"
},
"dependencies": {
"@pinia/nuxt": "^0.5.1",
"@trpc/client": "^10.45.1",
"@trpc/server": "^10.45.1",
"daisyui": "^4.7.2",
"generate-password-ts": "^1.6.5",
"openai": "^4.28.0",
"pinia": "^2.1.7",
"stripe": "^14.17.0",
"superjson": "^2.2.1",
"trpc-nuxt": "^0.10.19",
"vanilla-cookieconsent": "^3.0.0",
"zod": "^3.22.4"
},
"overrides": {
"vue": "latest"
}
}