-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.28 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": "next-auth",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postinstall": "prisma generate && cp -n .env.example .env || true",
"deploy": "npm run build rsync -azvv -e \"ssh -i ~/zaman-key.pem\" --exclude=.git --exclude=node_modules -azP . ec2-user@54.254.150.2:/home/ec2-user/apps/next-auth",
"migrate:dev": "prisma migrate dev",
"migrate:deploy": "prisma migrate deploy"
},
"dependencies": {
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^6.4.1",
"axios": "^1.7.9",
"bcrypt": "^5.1.1",
"next": "15.1.7",
"next-auth": "^4.24.11",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@headlessui/react": "^2.2.0",
"@tailwindcss/forms": "^0.5.10",
"@types/bcrypt": "^5.0.2",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.1.7",
"postcss": "^8",
"prisma": "^6.4.1",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}