-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.16 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
{
"name": "task-management-system",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && prisma generate",
"start": "next start",
"lint": "next lint",
"postinstall": "prisma generate"
},
"dependencies": {
"@babel/runtime": "^7.25.4",
"@clerk/nextjs": "^5.3.7",
"@nextui-org/modal": "^2.0.39",
"@nextui-org/react": "^2.4.6",
"@nextui-org/system": "^2.2.5",
"@nextui-org/theme": "^2.2.9",
"@prisma/client": "^5.19.0",
"@prisma/extension-accelerate": "^1.1.0",
"axios": "^1.7.6",
"framer-motion": "^11.3.31",
"moment": "^2.30.1",
"mongodb": "^6.8.0",
"next": "14.2.6",
"nextjs-toploader": "^3.6.15",
"react": "^18",
"react-dom": "^18",
"react-hot-toast": "^2.4.1",
"react-top-loading-bar": "^2.3.1",
"styled-components": "^6.1.12"
},
"devDependencies": {
"@types/node": "^20.16.2",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.6",
"postcss": "^8",
"prisma": "^5.19.0",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}