-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1000 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
33
34
35
36
37
38
39
40
41
42
43
{
"name": "mealog-web",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"prisma": {
"schema": "packages/database/prisma/schema.prisma"
},
"scripts": {
"build": "turbo run build",
"db:migrate:deploy": "turbo run db:migrate:deploy",
"db:push": "turbo run db:push",
"db:seed": "turbo run db:seed",
"dev": "turbo run dev",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"generate": "turbo run generate",
"lint": "turbo run lint"
},
"devDependencies": {
"@types/uuid": "^10.0.0",
"prettier": "^3.3.3",
"prisma": "^5.17.0",
"syncpack": "^12.4.0",
"tsx": "^4.16.5",
"turbo": "^2.0.11"
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]",
"dependencies": {
"@prisma/client": "^5.17.0",
"axios": "^1.7.3",
"dayjs": "^1.11.12",
"firebase": "^10.12.5",
"react-hot-toast": "^2.4.1",
"uuid": "^10.0.0",
"zod": "^3.23.8",
"zod-form-data": "^2.0.2"
}
}