-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.09 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
{
"name": "ananqueue",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@emotion/cache": "^11.14.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^6.4.8",
"@mui/material": "^6.4.8",
"@mui/material-nextjs": "^6.4.3",
"@prisma/client": "^6.5.0",
"bcrypt": "^5.1.1",
"next": "15.2.3",
"next-auth": "^4.24.11",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-hook-form": "^7.54.2",
"react-toastify": "^10.0.6",
"sharp": "^0.32.6",
"swr": "^2.3.3"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/node": "20.10.4",
"@types/react": "19.0.1",
"@types/react-dom": "19.0.1",
"eslint": "9.16.0",
"eslint-config-next": "15.1.6",
"prisma": "^6.5.0",
"typescript": "5.8.2"
},
"pnpm": {
"onlyBuiltDependencies": [
"@prisma/client",
"@prisma/engines",
"bcrypt",
"prisma",
"sharp"
]
}
}