-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
37 lines (37 loc) · 897 Bytes
/
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
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@next-auth/prisma-adapter": "^1.0.7",
"@nextui-org/react": "^1.0.0-beta.13",
"@prisma/client": "^5.13.0",
"@types/node": "20.14.10",
"@types/react": "18.3.3",
"@types/react-dom": "18.2.19",
"eslint": "8.57.0",
"eslint-config-next": "14.2.3",
"moment": "^2.30.1",
"next": "14.1.3",
"next-auth": "^4.24.5",
"react": "18.3.1",
"react-dom": "18.2.0",
"react-moment": "^1.1.2",
"swr": "^1.3.0",
"typescript": "5.5.4"
},
"devDependencies": {
"autoprefixer": "^10.4.17",
"postcss": "^8.4.45",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.6.2",
"prisma": "^5.19.1",
"tailwindcss": "^3.4.3"
}
}