-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.32 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
{
"name": "badstu",
"version": "0.1.0",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:gen": "bun x drizzle-kit generate:sqlite",
"db:migrate": "bun run scripts/migrate.ts",
"db:seed": "echo \"Not implemented yet\" && exit 1",
"upgrade-interactive": "bunx npm-check-updates --format group -i"
},
"dependencies": {
"@ariakit/react": "^0.1.8",
"@libsql/client": "^0.6.0",
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"drizzle-orm": "^0.30.9",
"firebase": "^10.11.0",
"fp-ts": "^2.16.5",
"next": "^14.2.3",
"next-auth": "^4.24.7",
"react": "18.2.0",
"react-dom": "18.2.0",
"remeda": "^1.61.0",
"resend": "^3.2.0",
"sharp": "^0.33.3",
"swr": "^2.2.5",
"tailwind-merge": "^2.3.0",
"twilio": "^4.23.0"
},
"devDependencies": {
"@types/node": "20.12.7",
"@types/react": "18.2.79",
"@types/react-dom": "18.2.25",
"autoprefixer": "10.4.19",
"drizzle-kit": "^0.20.17",
"eslint": "8.57.0",
"eslint-config-next": "14.2.3",
"eslint-plugin-import": "^2.29.1",
"postcss": "8.4.38",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14",
"tailwindcss": "3.4.3",
"typescript": "5.4.5"
}
}