-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
59 lines (59 loc) · 1.56 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
{
"name": "subatic",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"kysely": "kysely",
"migrate": "kysely migrate:latest",
"codegen": "kysely-codegen --dialect postgres --camel-case --out-file ./database/kysely-types.d.ts"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.682.0",
"@aws-sdk/s3-request-presigner": "^3.682.0",
"@lucia-auth/adapter-postgresql": "^3.1.2",
"@node-rs/argon2": "^2.0.0",
"@radix-ui/react-slot": "^1.1.0",
"@types/pg": "^8.11.10",
"@vidstack/react": "^1.12.12",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"dotenv": "^16.4.5",
"kysely": "^0.27.4",
"kysely-codegen": "^0.17.0",
"lucia": "^3.2.2",
"lucide-react": "^0.474.0",
"next": "15.1.6",
"pg": "^8.13.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.1",
"react-markdown": "^9.0.1",
"recharts": "^2.13.1",
"remark-gfm": "^4.0.0",
"schema-dts": "^1.1.2",
"tailwind-merge": "^2.5.4",
"ts-node": "^10.9.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^22.8.4",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"eslint": "^9.13.0",
"eslint-config-next": "15.1.6",
"kysely-ctl": "^0.10.0",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3"
},
"pnpm": {
"overrides": {
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7"
}
}
}