-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.4 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 2.4 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "postil",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && bun run scripts/verify-server-observability-bundle.ts",
"start": "next start",
"worker": "bun src/worker/index.ts",
"db:generate": "drizzle-kit generate",
"db:push": "drizzle-kit push",
"db:migrate": "drizzle-kit migrate",
"db:migrate:release": "bun run scripts/run-release-migrations.ts",
"release:prepare": "bun run db:migrate:release && bun run operational:indexes && bun run notifications:quiesce && bun run hosted:deactivate-release",
"seed": "bun run scripts/seed.ts",
"billing:grant-credit": "bun run scripts/grant-billing-credit.ts",
"billing:set-entitlement": "bun run scripts/set-org-entitlement.ts",
"notifications:quiesce": "bun run scripts/retire-escalation-email.ts --quiesce",
"jobs:activate-release": "bun run scripts/activate-release-jobs.ts",
"hosted:deactivate-release": "bun run scripts/deactivate-hosted-inference.ts",
"hosted:verify-provider": "bun run scripts/verify-hosted-provider.ts",
"operational:indexes": "bun run scripts/ensure-operational-indexes.ts",
"billing:backfill-contact-verification": "bun run scripts/backfill-billing-contact-verification.ts",
"verify:dashboard": "bun run scripts/verify-dashboard.ts",
"review:local": "bun run scripts/run-review-locally.ts",
"review:install-hook": "bun run scripts/install-local-postil-hook.ts",
"test": "AGENT=1 bun test --isolate"
},
"dependencies": {
"@opentelemetry/api-logs": "^0.220.0",
"@opentelemetry/exporter-logs-otlp-http": "^0.220.0",
"@opentelemetry/resources": "^2.9.0",
"@opentelemetry/sdk-logs": "^0.220.0",
"@paddle/paddle-js": "^1.6.4",
"@paddle/paddle-node-sdk": "^3.8.0",
"drizzle-orm": "^0.45.2",
"next": "15.5.19",
"pg": "^8.21.0",
"pg-connection-string": "^2.14.0",
"posthog-js": "^1.396.2",
"posthog-node": "^5.41.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-markdown": "^10.1.0",
"yaml": "^2.9.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.3.0",
"@types/bun": "^1.3.14",
"@types/node": "^25.9.3",
"@types/pg": "^8.20.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"drizzle-kit": "^0.31.10",
"tailwindcss": "^4.3.0",
"typescript": "^5"
},
"overrides": {
"postcss": "^8.5.10"
}
}