-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.38 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 3.38 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "signalstack-sms",
"version": "0.0.0",
"private": true,
"description": "Milestone 0 scaffold for SignalStack SMS, an AI-coded SMB texting SaaS.",
"scripts": {
"setup": "npm install && npm run db:generate",
"dev": "next dev",
"worker": "tsx workers/index.ts",
"worker:watch": "tsx workers/index.ts --watch",
"worker:bullmq": "tsx workers/bullmq.ts",
"queue:bullmq:smoke": "tsx scripts/bullmq-smoke.ts",
"build": "next build",
"start": "next start",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"test": "vitest run",
"test:e2e": "playwright test",
"test:e2e:smoke": "playwright test e2e/smoke.spec.ts --project=chromium",
"test:e2e:demo": "playwright test e2e/demo-path.spec.ts --project=chromium",
"test:e2e:product-demo": "playwright test e2e/product-demo-path.spec.ts --project=chromium",
"db:generate": "tsx scripts/db-generate.ts",
"db:validate": "prisma validate",
"db:migrate": "prisma migrate dev",
"db:deploy": "prisma migrate deploy",
"db:seed": "tsx prisma/seed.ts",
"db:reset": "tsx scripts/block-destructive-db-reset.ts",
"demo:seed": "tsx prisma/seed.ts",
"contracts:check": "tsx scripts/contracts-check.ts",
"compliance:check": "tsx scripts/compliance-check.ts",
"production:gate": "tsx scripts/production-gate.ts",
"production-auth:check": "tsx scripts/production-auth-rbac-check.ts",
"production-worker:check": "tsx scripts/production-worker-policy-check.ts",
"observability:check": "tsx scripts/observability-check.ts",
"operator:check": "tsx scripts/operator-runbook-check.ts",
"platform:check": "tsx scripts/platform-notes-check.ts",
"context:check": "tsx scripts/context-budget-check.ts",
"security:check": "tsx scripts/security-headers-check.ts",
"ai:check": "tsx scripts/ai-check.ts",
"secrets:scan": "tsx scripts/secrets-scan.ts",
"validate": "tsx scripts/validate.ts",
"agent:brief": "tsx scripts/agent-brief.ts",
"agent:status": "tsx scripts/agent-status.ts",
"agent:bootstrap": "bash scripts/agent/bootstrap.sh",
"agent:doctor": "bash scripts/agent/doctor.sh",
"agent:check": "bash scripts/agent/check.sh",
"agent:test": "bash scripts/agent/test.sh",
"agent:lint": "bash scripts/agent/lint.sh",
"agent:typecheck": "bash scripts/agent/typecheck.sh",
"agent:format": "bash scripts/agent/format.sh",
"agent:handoff": "tsx scripts/agent-handoff.ts",
"agent:repair": "npm run validate",
"afk:preflight": "bash scripts/agent/afk-preflight.sh",
"ci": "npm run validate",
"premerge": "npm run validate"
},
"dependencies": {
"@prisma/client": "^6.19.3",
"@vercel/otel": "^2.1.2",
"bullmq": "^5.76.10",
"ioredis": "^5.11.0",
"next": "^15.5.18",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"zod": "^3.25.76"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@playwright/test": "^1.60.0",
"@tailwindcss/forms": "^0.5.11",
"@types/node": "^22.19.19",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.5.0",
"eslint": "^9.39.4",
"eslint-config-next": "^15.5.18",
"postcss": "^8.5.15",
"prisma": "^6.19.3",
"tailwindcss": "^3.4.19",
"tsx": "^4.22.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.59.4",
"vitest": "^4.1.8"
},
"overrides": {
"next": {
"postcss": "8.5.15"
}
}
}