-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.04 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
{
"name": "starter-kit",
"private": true,
"version": "0.0.1",
"engines": {
"bun": ">=1.1.9"
},
"license": "MIT",
"main": "src/server/index.ts",
"scripts": {
"dev": "next dev",
"next:build": "next build",
"next:start": "next start",
"supabase:types": "source .env && supabase gen types typescript --project-id $NEXT_PUBLIC_SUPABASE_PROJECT_ID > src/server/types/database.types.ts"
},
"dependencies": {
"@supabase/supabase-js": "2.45.2",
"@trpc/client": "11.0.0-rc.485",
"@trpc/next": "11.0.0-rc.485",
"@trpc/react-query": "11.0.0-rc.485",
"@trpc/server": "11.0.0-rc.485",
"@types/jquery": "^3.5.30",
"@types/node": "^22.5.0",
"next": "14.2.6",
"react": "18.3.1",
"sass": "1.77.8",
"scss": "^0.2.4",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/bun": "^1.1.8",
"@types/react": "18.3.4",
"autoprefixer": "^10.4.20",
"bun-types": "1.1.26",
"eslint": "9.9.1",
"postcss": "^8.4.41",
"tailwindcss": "^3.4.10",
"typescript": "^5.5.4"
}
}