-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.18 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
{
"private": true,
"scripts": {
"postinstall": "npx prisma generate",
"dev": "npm run kill; next dev --turbo",
"build": "npx prisma generate && next build",
"start": "next start",
"kill": "lsof -ti :3000 >/dev/null && lsof -ti :3000 | xargs kill -9"
},
"dependencies": {
"@next-auth/prisma-adapter": "^1.0.7",
"@nextui-org/react": "^2.2.10",
"@prisma/adapter-pg": "^5.10.2",
"@prisma/client": "^5.10.2",
"@types/node": "20.10.6",
"@types/react": "18.2.46",
"@types/react-dom": "18.2.18",
"@vercel/postgres": "^0.7.2",
"@zach.codes/react-calendar": "^0.3.3",
"cookie": "^0.6.0",
"date-fns": "^3.6.0",
"framer-motion": "^11.0.24",
"jsonwebtoken": "^8.5.1",
"next": "latest",
"next-auth": "^4.24.7",
"parse-url": "^9.0.1",
"pg": "^8.11.3",
"postgres": "^3.4.3",
"react": "18.2.0",
"react-cookie": "^7.1.0",
"react-dom": "18.2.0",
"swr": "^2.2.5",
"typescript": "5.3.3",
"uuid": "^9.0.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/jsonwebtoken": "^9.0.6",
"autoprefixer": "^10.0.1",
"postcss": "^8.4.35",
"prisma": "^5.10.2",
"tailwindcss": "^3.3.0"
}
}