-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1015 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1015 Bytes
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
{
"name": "automated_attendance_website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"migrate:dev": "npx dotenv -e .env -- prisma migrate dev",
"db:push": "npx dotenv -e .env -- prisma db push",
"migrate:reset": "npx dotenv -e .env -- prisma migrate reset",
"db:seed": "npx dotenv -e .env -- prisma db seed",
"prisma:generate": "npx dotenv -e .env -- prisma generate",
"prisma:studio": "npx dotenv -e .env -- prisma studio",
"production:build": "npx prisma generate && npx prisma migrate deploy && next build"
},
"dependencies": {
"@prisma/client": "^5.9.1",
"bootstrap-icons": "^1.11.3",
"chart.js": "^4.4.2",
"faker": "^6.6.6",
"next": "^14.1.4",
"prop-types": "^15.8.1",
"react": "18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "18.2.0",
"react-icons": "^5.0.1"
},
"devDependencies": {
"prisma": "^5.9.1"
}
}