-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.13 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
{
"name": "bible-app-clone",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --experimental-https",
"build": "next build",
"start": "next start",
"lint": "next lint",
"docker:build": "docker compose -f docker-compose.yml build",
"docker:run": "docker compose -f docker-compose.yml up -d"
},
"dependencies": {
"@auth/prisma-adapter": "^1.0.4",
"@prisma/client": "^4.16.0",
"@types/bcrypt": "^5.0.0",
"@types/node": "20.8.6",
"@types/react": "18.2.28",
"@types/react-dom": "18.2.13",
"@types/react-icons": "^3.0.0",
"@types/react-query": "^1.2.9",
"autoprefixer": "10.4.16",
"bcrypt": "^5.1.1",
"eslint": "8.51.0",
"eslint-config-next": "13.5.4",
"next": "13.5.4",
"next-auth": "^4.23.2",
"next-themes": "^0.2.1",
"postcss": "8.4.31",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.47.0",
"react-icons": "^4.11.0",
"react-query": "^3.39.3",
"sass": "^1.69.3",
"sharp": "^0.32.6",
"tailwindcss": "3.3.3",
"typescript": "5.2.2"
},
"devDependencies": {
"prisma": "^4.16.0"
}
}