-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 921 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
{
"name": "toolcrib-2",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prismaPull": "dotenv -e .env.local prisma db pull",
"prismaMigrate": "dotenv -e .env.local prisma migrate dev",
"prismaPush": "dotenv -e .env.local prisma db push",
"prismaValidate": "dotenv -e .env.local prisma validate",
"prismaGenerate": "dotenv -e .env.local prisma generate"
},
"dependencies": {
"@auth0/nextjs-auth0": "^3.5.0",
"@prisma/client": "^5.20.0",
"dotenv-cli": "^7.4.2",
"eslint": "^8",
"eslint-config-next": "~14.2.14",
"next": "~14.2.14",
"react": "18.3.1",
"react-date-picker": "^11.0.0",
"react-dom": "18.3.1",
"swr": "^2.2.5",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz"
},
"devDependencies": {
"prisma": "^5.20.0"
}
}