-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.67 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.67 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
{
"name": "contextos",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"typecheck": "tsc --noEmit",
"audit:stage7": "node scripts/stage7-audit.mjs && node scripts/stage7-api-route-check.mjs && node scripts/stage7-schema-check.mjs && node scripts/stage7-config-check.mjs && node scripts/stage7-data-scope-check.mjs",
"audit:stage7:evidence": "node scripts/stage7-evidence-check.mjs",
"audit:stage8:preflight": "node scripts/deployment-preflight.mjs",
"audit:stage8:preflight:test": "node scripts/deployment-preflight-tests.mjs",
"audit:stage8:ops": "tsx scripts/stage8-operational-log-tests.ts",
"audit:stage9:lifecycle": "node scripts/stage9-lifecycle-audit.mjs",
"audit:stage9:evidence": "node scripts/stage9-evidence-check.mjs",
"audit:stage10:acceptance": "node scripts/stage10-acceptance-check.mjs",
"audit:stage10:claims": "node scripts/stage10-claims-audit.mjs",
"audit:release": "node scripts/release-closure-audit.mjs",
"account:create": "tsx scripts/account-operator.ts create",
"account:reset-password": "tsx scripts/account-operator.ts reset-password",
"test:account-operator": "tsx scripts/account-operator-tests.ts",
"test:container-distribution": "node scripts/run-container-distribution-smoke.mjs",
"db:migrate": "prisma migrate dev",
"db:deploy": "prisma migrate deploy",
"db:seed": "prisma db seed",
"db:reset": "prisma migrate reset --force",
"test:e2e": "playwright test",
"postinstall": "prisma generate",
"test:unit": "tsx --test src/lib/*.test.ts",
"audit:c10:product": "node scripts/c10-product-acceptance-check.mjs",
"capture:c10:visual": "node scripts/capture-c10-visual.mjs",
"typecheck:build": "tsc --noEmit -p tsconfig.build.json"
},
"dependencies": {
"@prisma/adapter-pg": "7.9.1",
"@prisma/client": "7.9.1",
"bcryptjs": "3.0.3",
"date-fns": "4.4.0",
"lucide-react": "1.17.0",
"next": "16.3.4",
"react": "19.2.6",
"react-dom": "19.2.6",
"zod": "4.4.3"
},
"devDependencies": {
"@playwright/test": "1.57.0",
"@tailwindcss/postcss": "4.3.0",
"@types/node": "22.19.17",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"pngjs": "^7.0.0",
"prisma": "7.9.1",
"tailwindcss": "4.3.0",
"tsx": "4.21.0",
"typescript": "5.9.3"
},
"overrides": {
"baseline-browser-mapping": "2.11.22",
"deepmerge-ts": "8.0.2",
"esbuild": "0.28.1",
"fast-uri": "3.1.7",
"mysql2": "3.24.4",
"nanoid": "6.0.0",
"postcss": "8.5.23",
"sharp": "0.35.4"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
}
}