-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 3.06 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
81
82
83
84
85
86
87
88
89
{
"name": "hanko_hackathon",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"turbo": "next dev --turbo",
"lint:fix": "eslint --ext \"src/**/*.{js,jsx,ts,tsx}\" --fix --quiet",
"lint:format": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\" --plugin-search-dir --ignore-path .gitignore",
"lint:format:check": "prettier --check \"src/**/*.{js,jsx,ts,tsx}\" --plugin-search-dir --ignore-path .gitignore",
"lint": "pnpm lint:fix && pnpm lint:format",
"stripe:listen": "stripe listen --forward-to localhost:3000/api/webhooks/stripe --latest",
"postinstall": "prisma generate",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"prisma:studio": "prisma studio",
"prisma:seed": "prisma db seed",
"prisma:deploy": "prisma deploy",
"prisma:format": "prisma format",
"prisma:format:check": "prisma format --check",
"prisma:push": "prisma push",
"prisma:generate-init": "npx prisma migrate dev --name init && npx tsx ./prisma/seedSupabase.ts"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@prisma/client": "5.5.2",
"@radix-ui/react-aspect-ratio": "^1.0.3",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@supabase/supabase-js": "^2.39.3",
"@teamhanko/hanko-elements": "^0.9.1",
"@trigger.dev/nextjs": "^2.3.16",
"@trigger.dev/react": "^2.3.16",
"@trigger.dev/replicate": "^2.3.16",
"@trigger.dev/resend": "^2.3.16",
"@trigger.dev/sdk": "^2.3.16",
"@trigger.dev/supabase": "^2.3.16",
"@types/formidable": "^3.4.4",
"@vercel/analytics": "^1.1.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"formidable": "^3.5.1",
"jose": "^5.0.1",
"lucide-react": "^0.291.0",
"next": "14.0.1",
"next-international": "^1.2.3",
"next-themes": "^0.2.1",
"ramda": "^0.29.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwind-merge": "^2.2.1",
"ts-node": "^10.9.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@types/eslint": "^8.56.2",
"@types/negotiator": "^0.6.3",
"@types/node": "20.11.10",
"@types/ramda": "^0.29.10",
"@types/react": "18.2.48",
"@types/react-dom": "18.2.18",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"autoprefixer": "10.4.16",
"eslint": "8.52.0",
"eslint-config-next": "14.0.1",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-tailwindcss": "^3.13.0",
"postcss": "8.4.33",
"postgres": "^3.4.3",
"prettier": "3.0.3",
"prettier-plugin-tailwindcss": "^0.5.6",
"prisma": "^5.5.2",
"tailwindcss": "3.3.5",
"tsx": "^3.14.0",
"typescript": "5.2.2"
},
"trigger.dev": {
"endpointId": "hankohackathon-K0yA"
}
}