-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.41 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.41 KB
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
51
52
53
54
{
"name": "decidoo",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"db:studio": "prisma studio",
"postinstall": "prisma generate"
},
"dependencies": {
"@auth/prisma-adapter": "^2.11.1",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^7.3.4",
"@mui/lab": "^7.0.1-beta.18",
"@mui/material": "^7.3.4",
"bcryptjs": "^3.0.2",
"date-fns": "^4.1.0",
"next": "^15.0.3",
"next-auth": "^5.0.0-beta.25",
"qrcode.react": "^4.2.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"resend": "^6.2.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@prisma/client": "^6.19.0",
"@types/bcryptjs": "^2.4.6",
"@types/jest": "^30.0.0",
"@types/node": "^22.8.7",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.1",
"autoprefixer": "^10.4.20",
"better-sqlite3": "^12.4.1",
"eslint": "^9.14.0",
"eslint-config-next": "^15.0.3",
"jest": "^30.2.0",
"postcss": "^8.4.47",
"prisma": "^6.19.0",
"tailwindcss": "^3.4.14",
"ts-jest": "^29.4.5",
"typescript": "^5.6.3"
}
}