-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
219 lines (219 loc) · 16.3 KB
/
package.json
File metadata and controls
219 lines (219 loc) · 16.3 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
{
"name": "cherry",
"version": "0.1.0",
"private": true,
"type": "module",
"engines": {
"node": ">=22 <23"
},
"engineStrict": true,
"packageManager": "npm@10.9.4",
"scripts": {
"predev": "npm run check:db-ready",
"dev": "next dev --webpack",
"build": "next build --webpack",
"build:strict": "npm run check:guardrails && next build --webpack",
"start": "next start",
"ci:verify": "npm run check && npm run test && npm run build",
"check:clean": "npm run ts:esm -- scripts/execution/run.mts check:clean",
"check:db-ready": "npm run ts:esm -- scripts/execution/run-db.mts check:db-ready",
"check:dev-login": "npm run ts:esm -- scripts/execution/run.mts check:dev-login",
"check:aggregate": "npm run ts:esm -- scripts/execution/run.mts check:aggregate",
"check:routes": "npm run ts:esm -- scripts/guardrails/run.mts check:routes",
"check:engine-freeze": "npm run ts:esm -- scripts/guardrails/run.mts check:engine-freeze",
"check:engine-input-boundary": "npm run ts:esm -- scripts/guardrails/run.mts check:engine-input-boundary",
"check:replay-staging-empty": "npm run ts:esm -- scripts/guardrails/run.mts check:replay-staging-empty",
"check:replay-object-store": "npm run ts:esm -- scripts/guardrails/run.mts check:replay-object-store",
"check:env-contract": "npm run ts:esm -- scripts/guardrails/run.mts check:env-contract",
"check:no-local-env-files": "npm run ts:esm -- scripts/guardrails/run.mts check:no-local-env-files",
"check:tmp-root-safety": "npm run ts:esm -- scripts/guardrails/run.mts check:tmp-root-safety",
"check:temp-quota": "npm run ts:esm -- scripts/guardrails/run.mts check:temp-quota",
"check:tmp-root-shape": "npm run ts:esm -- scripts/guardrails/run.mts check:tmp-root-shape",
"check:artifact-size-budgets": "npm run ts:esm -- scripts/guardrails/run.mts check:artifact-size-budgets",
"check:native-bindings": "npm run ts:esm -- scripts/guardrails/run.mts check:native-bindings",
"check:vercel-parity": "npm run ts:esm -- scripts/guardrails/run.mts check:vercel-parity",
"check:engine-version-gates": "npm run ts:esm -- scripts/guardrails/run.mts check:engine-version-gates",
"check:engine-version-bump": "npm run ts:esm -- scripts/guardrails/run.mts check:engine-version-bump",
"check:engine-version-imports": "npm run ts:esm -- scripts/guardrails/run.mts check:engine-version-imports",
"check:schema-evolution": "npm run ts:esm -- scripts/guardrails/run.mts check:schema-evolution",
"check:schema-breaking-plan": "npm run ts:esm -- scripts/guardrails/run.mts check:schema-breaking-plan",
"check:agents-doctrine-link": "npm run ts:esm -- scripts/guardrails/run.mts check:agents-doctrine-link",
"check:doctrine-present": "npm run ts:esm -- scripts/guardrails/run.mts check:doctrine-present",
"check:change-isolation": "npm run ts:esm -- scripts/guardrails/run.mts check:change-isolation",
"tmp:gc": "npm run ts:esm -- scripts/execution/run.mts tmp:gc",
"lint": "npm run lint:tailwind && npm run lint:eslint",
"lint:eslint": "eslint . --max-warnings=0",
"lint:scripts": "eslint scripts --max-warnings=0",
"lint:tailwind": "npm run check:tailwind-conflicts",
"ts:esm": "CHERRY_TSESM=1 tsx --tsconfig tsconfig.scripts.json",
"typecheck": "tsc -b tsconfig.typecheck.json --pretty false",
"typecheck:scripts": "tsc -b tsconfig.scripts.typecheck.json --pretty false",
"check:server-entropy": "npm run ts:esm -- scripts/guardrails/run.mts check:server-entropy",
"check:ordering": "npm run ts:esm -- scripts/guardrails/run.mts check:ordering",
"check:identity": "npm run ts:esm -- scripts/guardrails/run.mts check:identity",
"check:config": "npm run ts:esm -- scripts/guardrails/run.mts check:config",
"check:side-effects": "npm run ts:esm -- scripts/guardrails/run.mts check:side-effects",
"check:side-effects:diff": "npm run ts:esm -- scripts/guardrails/run.mts check:side-effects:diff",
"check:config-init": "npm run ts:esm -- scripts/guardrails/run.mts check:config-init",
"check:determinism": "npm run ts:esm -- scripts/guardrails/run.mts check:determinism",
"check:script-semantics": "npm run ts:esm -- scripts/guardrails/run.mts check:script-semantics",
"check:script-json-parse": "npm run ts:esm -- scripts/guardrails/run.mts check:script-json-parse",
"check:npm-arg-forwarding": "npm run ts:esm -- scripts/guardrails/run.mts check:npm-arg-forwarding",
"check:lockfile-sync": "npm run ts:esm -- scripts/guardrails/run.mts check:lockfile-sync",
"check:lockfile-integrity": "npm run ts:esm -- scripts/guardrails/run.mts check:lockfile-integrity",
"check:package-manager-pin": "npm run ts:esm -- scripts/guardrails/run.mts check:package-manager-pin",
"check:ci-uses-npm-ci": "npm run ts:esm -- scripts/guardrails/run.mts check:ci-uses-npm-ci",
"check:function-size-budget": "npm run ts:esm -- scripts/guardrails/run.mts check:function-size-budget",
"check:no-vendor-shims": "npm run ts:esm -- scripts/guardrails/run.mts check:no-vendor-shims",
"check:loader-contract": "npm run ts:esm -- scripts/guardrails/run.mts check:loader-contract",
"check:esm-loader-totality": "npm run ts:esm -- scripts/guardrails/run.mts check:esm-loader-totality",
"check:prisma-mock-loader-totality": "npm run ts:esm -- scripts/guardrails/run.mts check:prisma-mock-loader-totality",
"check:script-runner-contract": "npm run ts:esm -- scripts/guardrails/run.mts check:script-runner-contract",
"check:script-runtime-boundary": "npm run ts:esm -- scripts/guardrails/run.mts check:script-runtime-boundary",
"check:no-script-alias-imports": "npm run ts:esm -- scripts/guardrails/run.mts check:no-script-alias-imports",
"check:no-ts-extension-imports": "npm run ts:esm -- scripts/guardrails/run.mts check:no-ts-extension-imports",
"check:esm-imports": "npm run ts:esm -- scripts/guardrails/run.mts check:esm-imports",
"check:type-only-imports": "npm run ts:esm -- scripts/guardrails/run.mts check:type-only-imports",
"check:guardrail-no-runtime-io": "npm run ts:esm -- scripts/guardrails/run.mts check:guardrail-no-runtime-io",
"check:db-truth-boundary": "npm run ts:esm -- scripts/guardrails/run.mts check:db-truth-boundary",
"check:db-runner-exclusivity": "npm run ts:esm -- scripts/guardrails/run.mts check:db-runner-exclusivity",
"check:db-constraint-coverage": "npm run ts:esm -- scripts/guardrails/run.mts check:db-constraint-coverage",
"check:db-constraint-naming": "npm run ts:esm -- scripts/guardrails/run.mts check:db-constraint-naming",
"check:db-semantic-orm-agnostic": "npm run ts:esm -- scripts/guardrails/run.mts check:db-semantic-orm-agnostic",
"check:db-semantic-suite-minimum": "npm run ts:esm -- scripts/guardrails/run.mts check:db-semantic-suite-minimum",
"check:db-ledger-entrypoints": "npm run ts:esm -- scripts/guardrails/run.mts check:db-ledger-entrypoints",
"check:db-accounting-replay": "npm run ts:esm -- scripts/guardrails/run.mts check:db-accounting-replay",
"check:accounting-invariants": "npm run ts:esm -- scripts/guardrails/run.mts check:accounting-invariants",
"check:accounting-proof-coverage": "npm run ts:esm -- scripts/guardrails/run.mts check:accounting-proof-coverage",
"check:replay-equals-materialized": "npm run ts:esm -- scripts/guardrails/run.mts check:replay-equals-materialized",
"check:no-mutation": "npm run ts:esm -- scripts/guardrails/run.mts check:no-mutation",
"check:implicit-boolean": "npm run ts:esm -- scripts/guardrails/run.mts check:implicit-boolean",
"check:branded-literal": "npm run ts:esm -- scripts/guardrails/run.mts check:branded-literal",
"check:guardrail-self": "npm run ts:esm -- scripts/guardrails/run.mts check:guardrail-self",
"check:guardrail-time": "npm run ts:esm -- scripts/guardrails/run.mts check:guardrail-time",
"check:guardrail-registry": "npm run ts:esm -- scripts/guardrails/run.mts check:guardrail-registry",
"check:guardrail-name-path-bijection": "npm run ts:esm -- scripts/guardrails/run.mts check:guardrail-name-path-bijection",
"check:guardrail-doc-sync": "npm run ts:esm -- scripts/guardrails/run.mts check:guardrail-doc-sync",
"check:guardrail-execution": "npm run ts:esm -- scripts/guardrails/run.mts check:guardrail-execution",
"check:guardrail-execution-parity": "npm run ts:esm -- scripts/guardrails/run.mts check:guardrail-execution-parity",
"check:guardrail-runner-shape": "npm run ts:esm -- scripts/guardrails/run.mts check:guardrail-runner-shape",
"check:guardrail-helpers-exclusive": "npm run ts:esm -- scripts/guardrails/run.mts check:guardrail-helpers-exclusive",
"check:guardrail-subprocess-totality": "npm run ts:esm -- scripts/guardrails/run.mts check:guardrail-subprocess-totality",
"check:evidence-present": "npm run ts:esm -- scripts/guardrails/run.mts check:evidence-present",
"check:evidence-verifies": "npm run ts:esm -- scripts/guardrails/run.mts check:evidence-verifies",
"check:workflow-files-present": "npm run ts:esm -- scripts/guardrails/run.mts check:workflow-files-present",
"check:workflow-expressions-quoted": "npm run ts:esm -- scripts/guardrails/run.mts check:workflow-expressions-quoted",
"check:no-workflow-force-delete": "npm run ts:esm -- scripts/guardrails/run.mts check:no-workflow-force-delete",
"check:workflow-runner-context": "npm run ts:esm -- scripts/guardrails/run.mts check:workflow-runner-context",
"check:ci-must-run-check": "npm run ts:esm -- scripts/guardrails/run.mts check:ci-must-run-check",
"check:ci-guardrail-coverage": "npm run ts:esm -- scripts/guardrails/run.mts check:ci-guardrail-coverage",
"check:execution-registry-completeness": "npm run ts:esm -- scripts/guardrails/run.mts check:execution-registry-completeness",
"check:no-orphan-check-files": "npm run ts:esm -- scripts/guardrails/run.mts check:no-orphan-check-files",
"check:no-orphan-scripts": "npm run ts:esm -- scripts/guardrails/run.mts check:no-orphan-scripts",
"check:engine-prisma": "npm run ts:esm -- scripts/guardrails/run.mts check:engine-prisma",
"check:engine-date": "npm run ts:esm -- scripts/guardrails/run.mts check:engine-date",
"check:engine-optimality": "npm run ts:esm -- scripts/guardrails/run.mts check:engine-optimality",
"check:engine-optimality-version": "npm run ts:esm -- scripts/guardrails/run.mts check:engine-optimality-version",
"check:catch-unknown": "npm run ts:esm -- scripts/guardrails/run.mts check:catch-unknown",
"check:guardrails-core": "npm run ts:esm -- scripts/guardrails/run.mts check:guardrails-core",
"check:repo-guardrails": "npm run ts:esm -- scripts/guardrails/run.mts check:repo-guardrails",
"check:environment-import-integrity": "npm run ts:esm -- scripts/guardrails/run.mts check:environment-import-integrity",
"check:user-pages-runtime": "npm run ts:esm -- scripts/guardrails/run.mts check:user-pages-runtime",
"check:config-lock": "npm run ts:esm -- scripts/guardrails/run.mts check:config-lock",
"check:config-snapshot": "npm run ts:esm -- scripts/guardrails/run.mts check:config-snapshot",
"check:ts-coverage": "npm run ts:esm -- scripts/guardrails/run.mts check:ts-coverage",
"check:check-contract": "npm run ts:esm -- scripts/guardrails/run.mts check:check-contract",
"check:env": "npm run check:guardrails:env && npm run check:db:required && npm run check:migrations:required",
"check:node": "npm run lint:scripts && npm run typecheck:scripts && npm run check:run-tests:node",
"check:next": "npm run lint && npm run typecheck && npm run check:run-tests:next",
"check": "npm run check:guardrails && npm run check:node && npm run check:next",
"check:guardrails": "npm run ts:esm -- scripts/guardrails/run.mts --all --tier=core",
"check:guardrails:env": "npm run check:guardrails -- --tier=env",
"check:dev-ui-parity": "npm run ts:esm -- scripts/guardrails/run.mts check:dev-ui-parity",
"check:shell-boundaries": "npm run ts:esm -- scripts/guardrails/run.mts check:shell-boundaries",
"check:route-collisions": "npm run ts:esm -- scripts/guardrails/run.mts check:route-collisions",
"check:run-tests": "npm run ts:esm -- scripts/execution/run.mts check:run-tests",
"check:run-tests:node": "npm run ts:esm -- scripts/execution/run.mts check:run-tests:node",
"check:run-tests:next": "npm run ts:esm -- scripts/execution/run.mts check:run-tests:next",
"check:tests:node": "npm run ts:esm -- scripts/execution/run.mts check:tests:node",
"check:tests:next": "npm run ts:esm -- scripts/execution/run.mts check:tests:next",
"check:tests": "npm run check:tests:node && npm run check:tests:next",
"check:run-db-tests": "npm run ts:esm -- scripts/execution/run-db.mts check:run-db-tests",
"check:tailwind-conflicts": "npm run ts:esm -- scripts/execution/run.mts check:tailwind-conflicts",
"ingest:mcc": "npm run ts:esm -- scripts/execution/run.mts ingest:mcc",
"ingest:moustafa-bank": "npm run ts:esm -- scripts/execution/run.mts ingest:moustafa-bank",
"dev:ingest:moustafa-bank": "npm run ingest:moustafa-bank",
"audit:evaluator:moustafa": "npm run ts:esm -- scripts/execution/run.mts audit:evaluator:moustafa",
"dev:evaluator:moustafa": "npm run audit:evaluator:moustafa",
"seed:demo": "npm run backfill:seed-demo",
"audit:integrity": "npm run ts:esm -- scripts/execution/run.mts audit:integrity",
"backfill:bucket-last-reset-at": "npm run ts:esm -- scripts/execution/run.mts backfill:bucket-last-reset-at",
"backfill:category-preference-enum": "npm run ts:esm -- scripts/execution/run.mts backfill:category-preference-enum",
"backfill:seed-demo": "npm run ts:esm -- scripts/execution/run.mts backfill:seed-demo",
"cleanup:kill-alias-imports": "npm run ts:esm -- scripts/execution/run.mts cleanup:kill-alias-imports",
"cleanup:vine-sessions": "npm run ts:esm -- scripts/execution/run.mts cleanup:vine-sessions",
"cleanup:replay-blobs": "npm run ts:esm -- scripts/execution/run.mts cleanup:replay-blobs",
"check:prisma-assumptions": "npm run ts:esm -- scripts/guardrails/run.mts check:prisma-assumptions",
"check:db:optional": "npm run ts:esm -- scripts/execution/run-db.mts check:db:optional",
"check:db:required": "npm run ts:esm -- scripts/execution/run-db.mts check:db:required",
"check:db": "npm run check:db:optional",
"check:migrations:required": "npm run check:db-ready",
"check:migrations": "npm run ts:esm -- scripts/guardrails/run.mts check:migrations",
"report:authority": "npm run ts:esm -- scripts/execution/run.mts report:authority",
"report:bucket-balance": "npm run ts:esm -- scripts/execution/run.mts report:bucket-balance",
"check:authority-lint": "npm run ts:esm -- scripts/guardrails/run.mts check:authority-lint",
"check:authority-invariants": "npm run ts:esm -- scripts/guardrails/run.mts check:authority-invariants",
"postinstall": "patch-package && prisma generate --schema=prisma/schema.prisma",
"test": "npm run check:run-tests",
"test:db": "npm run check:run-db-tests",
"test:strict": "npm run check:guardrails && npm run check:run-tests"
},
"dependencies": {
"@auth/prisma-adapter": "2.11.1",
"@prisma/client": "^6.19.0",
"@radix-ui/react-slot": "^1.2.4",
"@tailwindcss/oxide": "4.1.18",
"class-variance-authority": "^0.7.1",
"csv-parse": "^6.1.0",
"lightningcss": "1.24.1",
"next": "^16.0.8",
"next-auth": "5.0.0-beta.30",
"nodemailer": "^7.0.10",
"passkit-generator": "^3.5.5",
"pdf-parse": "^2.4.5",
"react": "19.2.0",
"react-dom": "19.2.0",
"zod": "^4.1.13"
},
"overrides": {
"@auth/core": "0.41.1",
"lightningcss": "1.24.1"
},
"devDependencies": {
"@simplewebauthn/server": "^9.0.3",
"@simplewebauthn/types": "^9.0.1",
"@tailwindcss/language-server": "^0.14.29",
"@tailwindcss/postcss": "^4",
"@types/cookie": "^0.6.0",
"@types/node": "^22",
"@types/nodemailer": "^7.0.4",
"@types/react": "^19",
"@types/react-dom": "^19",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vscode/ripgrep": "1.17.0",
"babel-plugin-react-compiler": "1.0.0",
"baseline-browser-mapping": "^2.8.32",
"eslint": "^9",
"eslint-config-next": "16.0.3",
"eslint-plugin-zod": "^1.4.0",
"fast-glob": "^3.3.3",
"patch-package": "^8.0.1",
"prisma": "^6.19.0",
"tailwindcss": "^4",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tsx": "4.19.2",
"typescript": "^5"
}
}