-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.05 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
{
"name": "2a5-api",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 3000",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "npx cypress run",
"prismagenerate": "npx prisma generate",
"prismadbpush": "dotenv -e ./.env.development.local -- npx prisma db push",
"prismamigratedev": "dotenv -e ./.env.development.local -- npx prisma migrate dev",
"prismamigratedeploy": "dotenv -e ./.env.development.local -- npx prisma migrate deploy"
},
"dependencies": {
"@prisma/client": "^5.11.0",
"dotenv-cli": "^7.4.1",
"next": "^14.1.3",
"psl": "^1.9.0",
"qrcode": "^1.5.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.4.2"
},
"devDependencies": {
"@types/psl": "^1.1.0",
"@types/node": "^20.11.26",
"@types/qrcode": "^1.5.0",
"@types/react": "18.2.65",
"cypress": "^13.6.6",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-next": "^14.1.3",
"pg": "^8.11.3",
"prisma": "^5.11.0"
}
}