-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1010 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
{
"name": "prasi-deploy",
"module": "src/index.ts",
"type": "module",
"scripts": {
"dev": "bun run --no-clear-screen --hot ./pkgs/core/index.ts dev",
"clean": "rm -rf data/lmdb && rm -rf app/static && rm -rf app/web/.parcel-cache",
"build": "bun run --silent ./pkgs/core/build.ts",
"db-pull": "bun run ./pkgs/core/db-pull.ts",
"parcel": "bun clean && bun run ./pkgs/core/parcel.ts",
"prod": "bun run ./pkgs/core/index.ts prod",
"local-prod": "bun run build && bun run db-pull && bun run ./pkgs/core/index.ts",
"pull": "cd app/db && bun prisma db pull && bun prisma generate",
"pkgs-upgrade": "bun run --silent ./pkgs/core/upgrade.ts",
"prep": "bun run --silent ./pkgs/docker-prep.ts"
},
"workspaces": [
"app/*",
"pkgs/*"
],
"dependencies": {
"brotli-wasm": "^3.0.1",
"caniuse-lite": "^1.0.30001688",
"fdir": "^6.3.0",
"react-select": "^5.8.0",
"typescript": "^5.6.2"
},
"trustedDependencies": [
"@cloudpss/zstd"
]
}