-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1007 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
38
39
40
{
"name": "label-express-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"seed": "node prisma/seed.js",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@heroicons/react": "^2.2.0",
"@next-auth/prisma-adapter": "^1.0.7",
"@opensearch-project/opensearch": "^3.4.0",
"@prisma/client": "^6.5.0",
"@types/react-datepicker": "^6.2.0",
"bcryptjs": "^3.0.2",
"d3": "^7.9.0",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"next": "15.2.3",
"next-auth": "^4.24.11",
"react": "^19.0.0",
"react-datepicker": "^8.2.1",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/bcryptjs": "^2.4.6",
"@types/d3": "^7.4.3",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"prisma": "^6.5.0",
"tailwindcss": "^4",
"ts-node": "^10.9.2",
"typescript": "^5"
}
}