-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.37 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": "proteiner",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"migrate:local": "dotenv -e .env.local npx prisma migrate dev",
"migrate:production": "dotenv -e .env.production npx prisma migrate deploy",
"seed:local": "dotenv -e .env.local node prisma/seed.js",
"delete-seed:local": "dotenv -e .env.local node prisma/delete.js",
"seed:production": "dotenv -e .env.production node prisma/seed.js"
},
"dependencies": {
"@prisma/client": "^5.19.1",
"@types/http-errors": "^2.0.4",
"@types/js-cookie": "^3.0.6",
"@types/uuid": "^10.0.0",
"add": "^2.0.6",
"axios": "^1.7.7",
"daisyui": "^4.12.10",
"dotenv": "^16.4.5",
"firebase": "^10.13.2",
"firebase-admin": "^12.5.0",
"http-errors": "^2.0.0",
"js-cookie": "^3.0.5",
"next": "14.2.11",
"prisma": "^5.19.1",
"react": "^18",
"react-dom": "^18",
"react-icons": "^5.3.0",
"uuid": "^10.0.0",
"yarn": "^1.22.22",
"zod": "^3.23.8",
"zustand": "^5.0.0-rc.2"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"dotenv-cli": "^7.4.2",
"eslint": "^8",
"eslint-config-next": "14.2.11",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}