-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.81 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
{
"name": "@agriinsight/web",
"version": "0.1.0",
"description": "Next.js 16 agriculture operations web platform with an opaque-session BFF, farm views and mobile-first idempotent work logging.",
"private": true,
"type": "module",
"packageManager": "npm@11.16.0",
"engines": {
"node": ">=24.12.0 <25",
"npm": ">=11.6.2 <12"
},
"scripts": {
"predev": "node scripts/sync-dashboard-assets.mjs",
"dev": "next dev --port 3100",
"prebuild": "node scripts/sync-dashboard-assets.mjs",
"build": "next build",
"audit:prod": "npm audit --omit=dev --audit-level=high",
"start": "next start --port 3100",
"lint": "eslint . --max-warnings=0",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:db": "vitest run tests/db",
"test:e2e": "playwright test",
"test:watch": "vitest",
"contracts:generate": "node scripts/generate-openapi-types.mjs",
"contracts:check": "node scripts/generate-openapi-types.mjs --check",
"db:migrate": "node db/migrate.mjs",
"db:validate": "node db/validate-runtime-schema.mjs"
},
"dependencies": {
"@radix-ui/react-slot": "^1.3.3",
"@tailwindcss/postcss": "^4.3.3",
"next": "16.2.11",
"openid-client": "6.8.4",
"pg": "8.22.0",
"react": "19.2.8",
"react-dom": "19.2.8",
"server-only": "0.0.1",
"tailwindcss": "^4.3.3",
"zod": "4.3.6"
},
"overrides": {
"js-yaml": "4.3.0",
"postcss": "8.5.22",
"sharp": "0.35.3"
},
"devDependencies": {
"@axe-core/playwright": "4.12.1",
"@playwright/test": "1.61.1",
"@types/node": "24.13.3",
"@types/pg": "8.20.0",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"eslint": "9.39.2",
"eslint-config-next": "16.2.11",
"openapi-typescript": "7.13.0",
"typescript": "5.9.3",
"vitest": "4.1.0"
}
}