-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.46 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
{
"name": "supanuxt-saas-drizzle",
"version": "1.4.3",
"author": {
"name": "Michael Dausmann",
"email": "[email protected]",
"url": "https://www.michaeldausmann.com/"
},
"license": "MIT",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"test": "vitest",
"db:generate": "drizzle-kit generate:pg --schema ./drizzle/schema.ts --out=./drizzle/migrations",
"db:migrate": "npx vite-node ./drizzle/migrate.ts",
"db:seed": "npx vite-node ./drizzle/seed.ts"
},
"devDependencies": {
"@nuxt/test-utils": "^3.11.0",
"@nuxtjs/supabase": "^1.1.6",
"@nuxtjs/tailwindcss": "^6.11.4",
"@tailwindcss/typography": "^0.5.10",
"@types/node": "^20.11.19",
"dotenv": "^16.4.5",
"drizzle-kit": "^0.20.14",
"nuxt": "^3.10.2",
"nuxt-icon": "^0.6.8",
"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",
"drizzle-orm": "^0.29.3",
"generate-password-ts": "^1.6.5",
"openai": "^4.28.0",
"pinia": "^2.1.7",
"postgres": "^3.4.3",
"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"
}
}