-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.12 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
{
"name": "task_management",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"postinstall": "prisma generate && prisma db push",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest --watchAll --coverage"
},
"prisma": {
"schema": "prisma/schema.prisma"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.7.2",
"@jest/globals": "^29.7.0",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^6.7.0",
"bcryptjs": "^3.0.2",
"framer-motion": "^12.6.2",
"mysql2": "^3.14.1",
"next": "^15.3.0",
"next-auth": "^4.24.11",
"nodemailer": "^6.10.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-icons": "^5.5.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"babel-jest": "^29.7.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prisma": "^6.7.0",
"supertest": "^7.1.0",
"whatwg-fetch": "^3.6.20"
}
}