-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 944 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": "fullstack-for-bun-api",
"version": "1.0.50",
"workspaces": [
"apps/*"
],
"trustedDependencies": [
"@prisma/client",
"@prisma/engines",
"prisma"
],
"scripts": {
"dev": "bun --filter '*' dev",
"build": "bun --filter '*' build",
"lint": "bun --filter '*' lint",
"frontend": "bun run --filter frontend",
"frontend:build": "bun frontend build",
"backend": "bun run --filter bun-api",
"backend:docker-build": "bun backend build:docker",
"prisma:new": "bun backend prisma:new",
"prisma:pull": "bun backend prisma:pull",
"prisma:push": "bun backend prisma:push",
"prisma:deploy": "bun backend prisma:deploy",
"prisma:generate": "bun backend prisma:generate",
"docker:dev": "docker-compose up -d",
"docker:deploy": "docker-compose -f docker-compose-deploy.yml up -d --build"
},
"dependencies": {},
"devDependencies": {
"prettier": "^3.2.5"
}
}