-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.53 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.53 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
{
"name": "aoz-housing",
"version": "0.1.0",
"engines": {
"node": ">=24"
},
"private": true,
"description": "Support platform for refugee care work: housing stability with compatibility matching, daily-life coordination, conflict resolution, and learning & participation tracking — one system for staff and residents",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"verify": "pnpm run format:check && pnpm run lint && pnpm run typecheck && pnpm run test",
"test": "vitest run",
"test:e2e": "playwright test",
"db:generate": "drizzle-kit generate",
"db:push": "drizzle-kit push",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio",
"db:seed": "ts-node -r tsconfig-paths/register --compiler-options '{\"module\":\"CommonJS\",\"types\":[\"node\"]}' scripts/db/seed.ts",
"db:seed:admin": "ts-node -r tsconfig-paths/register --compiler-options '{\"module\":\"CommonJS\",\"types\":[\"node\"]}' scripts/db/seed-admin.ts",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"@bitbaum/ai-kit": "^0.6.2",
"@fleet/ai-forms": "npm:ai-forms@^0.1.2",
"@paralleldrive/cuid2": "^3.3.0",
"@sentry/nextjs": "^10.71.0",
"@types/bcryptjs": "^2.4.6",
"bcryptjs": "^3.0.3",
"bip-kit": "^0.1.0",
"clsx": "^2.1.1",
"drizzle-orm": "^0.45.2",
"jose": "^6.2.10",
"lucide-react": "^1.38.0",
"marked": "14.1.4",
"next": "^16.3.3",
"papaparse": "^5.7.0",
"pg": "^8.23.0",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"tailwindcss": "^4.3.3",
"zod": "^4.5.4"
},
"devDependencies": {
"@axe-core/playwright": "^4.13.0",
"@playwright/test": "^1.62.1",
"@tailwindcss/postcss": "^4.3.3",
"@testing-library/jest-dom": "^7.0.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.6",
"@types/node": "^26.4.0",
"@types/papaparse": "^5.5.2",
"@types/pg": "^8.23.1",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.5",
"@vitest/coverage-v8": "^4.1.11",
"axe-core": "^4.13.0",
"drizzle-kit": "^0.31.10",
"eslint": "^10.9.1",
"eslint-config-next": "^16.3.3",
"espree": "^11.2.0",
"glob": "^13.0.6",
"jsdom": "^29.1.1",
"postcss": "^8.5.26",
"prettier": "3.9.6",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^6.0.3",
"vitest": "^4.1.11"
},
"packageManager": "pnpm@11.25.0"
}