-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.16 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 3.16 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
{
"name": "ehs",
"version": "0.1.0",
"private": true,
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/SafetyMP/Autonomous-EHS-Management.git"
},
"bugs": {
"url": "https://github.com/SafetyMP/Autonomous-EHS-Management/issues"
},
"homepage": "https://autonomous-ehs-management.vercel.app",
"engines": {
"node": ">=22 <23",
"npm": ">=10.9.2 <11"
},
"packageManager": "npm@10.9.2",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"verify": "npm run lint && npx tsc --noEmit && npm test",
"verify:all": "npm run verify && npm run test:e2e:smoke",
"audit:matrix-greps": "bash scripts/audit-matrix-greps.sh",
"db:generate": "drizzle-kit generate",
"db:migrate": "tsx scripts/migrate.ts",
"demo:up": "tsx scripts/demo-up.ts",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"db:seed": "tsx scripts/seed.ts",
"db:seed:ci": "tsx scripts/seed-ci-e2e.ts",
"db:seed:demo": "tsx scripts/seed-demo.ts",
"db:seed:demo:reset": "tsx scripts/reset-demo-org.ts",
"test": "vitest run --coverage",
"test:unit": "vitest run",
"test:e2e": "playwright test",
"test:e2e:smoke": "playwright test tests/e2e --grep @smoke",
"test:e2e:a11y": "playwright test --project=a11y",
"screenshots": "node scripts/capture-screenshots.mjs",
"screenshots:rebuild-gif": "node scripts/capture-screenshots.mjs --from-existing",
"job:worker": "tsx scripts/job-worker.ts",
"portco:pilot-verify": "tsx scripts/portco-pilot-verify.ts"
},
"dependencies": {
"@neondatabase/serverless": "^1.1.0",
"@t3-oss/env-nextjs": "^0.13.11",
"@tanstack/react-query": "^5.101.4",
"@trpc/client": "^11.18.0",
"@trpc/react-query": "^11.18.0",
"@trpc/server": "^11.18.0",
"@trpc/tanstack-react-query": "^11.18.0",
"@upstash/ratelimit": "^2.0.8",
"@upstash/redis": "^1.38.0",
"better-auth": "^1.6.25",
"dotenv": "^17.4.2",
"drizzle-orm": "^0.45.2",
"next": "16.2.12",
"pg": "^8.22.0",
"pg-boss": "^12.26.3",
"react": "19.2.8",
"react-dom": "19.2.8",
"server-only": "^0.0.1",
"superjson": "^2.2.6",
"zod": "^4.4.3"
},
"devDependencies": {
"@axe-core/playwright": "^4.12.1",
"@eslint/eslintrc": "^3.3.5",
"@playwright/test": "^1.61.1",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/github": "^12.0.9",
"@semantic-release/release-notes-generator": "^14.1.1",
"@tailwindcss/postcss": "^4",
"@types/node": "^26",
"@types/pg": "^8.20.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vercel/config": "^0.5.5",
"@vitejs/plugin-react": "^6.0.3",
"@vitest/coverage-v8": "^4.1.10",
"drizzle-kit": "^0.31.10",
"eslint": "^9",
"eslint-config-next": "16.2.12",
"gifenc": "^1.0.3",
"jsdom": "^29.1.1",
"pngjs": "^7.0.0",
"semantic-release": "^25.0.5",
"tailwindcss": "^4",
"tsx": "^4.23.0",
"typescript": "^6",
"vitest": "^4.1.10"
},
"overrides": {
"undici": "^8.7.0",
"vite": "^8.1.4",
"postcss": "^8.5.23",
"sharp": "^0.35.3"
}
}