-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.6 KB
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
{
"name": "pramen",
"version": "0.0.0",
"private": true,
"description": "Reactive backend runtime for TypeScript on Cloudflare — schema + handlers, deployed as Workers + Durable Objects.",
"type": "module",
"workspaces": [
"packages/*"
],
"bin": {
"pramen": "scripts/cli.ts"
},
"scripts": {
"config": "oblaka oblaka.ts",
"dev": "oblaka oblaka.ts && lopata dev",
"dev:wrangler": "oblaka oblaka.ts && wrangler dev",
"deploy": "oblaka oblaka.ts --remote --state-namespace pramen-iac-state && wrangler deploy",
"plan": "oblaka oblaka.ts --remote --dry-run --state-namespace pramen-iac-state",
"pramen": "bun scripts/cli.ts",
"build": "bun run --filter '@pramen/*' build",
"bump": "bun scripts/bump.ts",
"release": "bun run build && bun scripts/publish.ts",
"typecheck": "tsc --noEmit && tsc -p packages/server/tsconfig.json && tsc -p packages/auth/tsconfig.json && tsc -p packages/cms/tsconfig.json && tsc -p packages/cms-editor/tsconfig.json && tsc -p packages/client/tsconfig.json && tsc -p packages/react/tsconfig.json && tsc -p packages/admin/tsconfig.json",
"test": "bun test"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20250101.0",
"@pramen/admin": "workspace:*",
"@pramen/auth": "workspace:*",
"@pramen/client": "workspace:*",
"@pramen/cms": "workspace:*",
"@pramen/react": "workspace:*",
"@pramen/server": "workspace:*",
"@types/react": "^19.0.0",
"bcryptjs": "2.4.3",
"lopata": "^0.19.2",
"oblaka-iac": "^0.0.16",
"react": "^19.0.0",
"typescript": "^5.7.0",
"wrangler": "^4.101.0"
}
}