-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.38 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
46
47
48
49
50
{
"name": "mul-search",
"version": "1.0.2",
"private": true,
"scripts": {
"dev": "dotenv -e .env.local next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postinstall": "prisma generate",
"prismaVer": "dotenv -e .env.development.local prisma migrate dev",
"prismaLocal": "dotenv -e .env.local prisma migrate dev"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@auth/prisma-adapter": "^2.4.1",
"@headlessui/react": "^1.7.18",
"@heroicons/react": "^2.1.1",
"@prisma/client": "^5.16.0",
"@types/node": "20.4.10",
"@types/node-forge": "^1.3.11",
"@types/react": "18.2.20",
"@types/react-dom": "18.2.7",
"@vercel/postgres": "^0.10.0",
"autoprefixer": "10.4.14",
"bcrypt": "^5.1.1",
"eslint": "8.47.0",
"eslint-config-next": "^14.1.2",
"next": "^14.1.2",
"next-auth": "^5.0.0-beta.19",
"pdfjs-dist": "^3.11.174",
"postcss": "^8.4.35",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.13",
"server-only": "^0.0.1",
"swr": "^2.2.5",
"tailwindcss": "^3.4.4",
"tailwindcss-bg-patterns": "^0.3.0",
"typescript": "5.1.6"
},
"devDependencies": {
"daisyui": "^4.7.2",
"dotenv-cli": "^7.4.2",
"prisma": "^5.16.0",
"ts-node": "^10.9.2"
}
}