-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
197 lines (197 loc) · 8.94 KB
/
Copy pathpackage.json
File metadata and controls
197 lines (197 loc) · 8.94 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
{
"name": "evig",
"version": "0.1.0",
"private": true,
"license": "MIT",
"scripts": {
"dev": "next dev",
"dev:frontend": "npm run dev",
"dev:full": "./scripts/start-all.sh",
"d": "npm run services:up && npm run transcription:bg && npm run dev",
"db:up": "docker compose up -d db",
"db:down": "docker compose down db",
"db:migrate": "bash scripts/db/run-migration.sh",
"services:up": "docker compose up -d db meilisearch listmonk",
"services:down": "docker compose down",
"start:all": "./scripts/start-all.sh",
"stop:all": "./scripts/stop-all.sh",
"setup": "npm run services:up && echo 'Waiting for services...' && sleep 5",
"setup-admins": "npx tsx scripts/setup-all-admins.ts",
"e2e:seed": "npx tsx scripts/e2e-seed.ts",
"generate:admin-hash": "node scripts/generate-admin-hash.js",
"reset": "npm run services:down && docker compose down -v && npm run setup",
"listmonk:setup": "./scripts/setup-listmonk.sh",
"listmonk:up": "docker compose up -d listmonk",
"listmonk:down": "docker compose stop listmonk",
"listmonk:logs": "docker compose logs -f listmonk",
"build": "NODE_ENV=production next build --webpack",
"start": "next start",
"lint": "eslint .",
"lint:umlauts": "bash scripts/lint-umlauts.sh src",
"lint:chrome": "bash scripts/ci/card-shell-ratchet.sh",
"lint:docs": "bash scripts/ci/docs-paths-exist.sh",
"compliance:ssot": "node scripts/ssot-audit.mjs",
"test:i18n": "jest src/config/__tests__/i18n-array-parity.test.ts src/config/__tests__/nav-i18n-keys.test.ts src/config/__tests__/no-brand-suffix-in-message-titles.test.ts",
"compliance:i18n": "node scripts/i18n-audit.mjs",
"compliance:i18n-hardcoded": "node scripts/i18n-hardcoded-audit.mjs",
"compliance:i18n-leaks": "node scripts/i18n-leaks.mjs --check",
"compliance": "npm run compliance:ssot && npm run compliance:i18n && npm run compliance:i18n-hardcoded && npm run compliance:i18n-leaks && npm run compliance:i18n-stale",
"compliance:ci": "npm run compliance:ssot && npm run compliance:i18n && npm run compliance:i18n-hardcoded && npm run compliance:i18n-leaks",
"i18n:missing": "node scripts/i18n-missing.mjs",
"i18n:businessplan": "node scripts/i18n-businessplan-parity.mjs",
"i18n:apply": "node scripts/i18n-apply.mjs",
"i18n:leaks": "node scripts/i18n-leaks.mjs",
"i18n:apply-leaks": "node scripts/i18n-apply-leaks.mjs",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:e2e": "playwright test",
"test:e2e:auth": "playwright test tests/e2e/auth-smoke.spec.ts -g 'credentials login'",
"test:e2e:journeys": "playwright test tests/e2e/*journey.spec.ts",
"test:e2e:guards": "playwright test tests/e2e/security.spec.ts tests/e2e/notification-hrefs.spec.ts tests/e2e/user-admin-flows.spec.ts",
"test:e2e:it-hilfe": "playwright test tests/e2e/it-hilfe.spec.ts",
"test:e2e:it-hilfe:journey": "playwright test tests/e2e/it-hilfe-journey.spec.ts",
"test:e2e:marketplace:journey": "playwright test tests/e2e/marketplace-checkout-journey.spec.ts",
"test:e2e:workshops:journey": "playwright test tests/e2e/workshops-journey.spec.ts",
"test:e2e:workshops:proposal:journey": "playwright test tests/e2e/workshop-proposal-journey.spec.ts",
"test:e2e:timecards:journey": "playwright test tests/e2e/timecard-journey.spec.ts",
"test:e2e:intake:journey": "playwright test tests/e2e/intake-journey.spec.ts",
"test:e2e:tasks:journey": "playwright test tests/e2e/tasks-journey.spec.ts",
"test:e2e:protocols:journey": "playwright test tests/e2e/protocols-journey.spec.ts",
"test:e2e:decisions:journey": "playwright test tests/e2e/decisions-journey.spec.ts",
"test:e2e:cms:journey": "playwright test tests/e2e/cms-journey.spec.ts",
"test:e2e:hr:journey": "playwright test tests/e2e/hr-vacancy-journey.spec.ts",
"test:e2e:it-hilfe:preferred:journey": "playwright test tests/e2e/it-hilfe-preferred-technician-journey.spec.ts",
"test:e2e:service:journey": "playwright test tests/e2e/service-appointment-journey.spec.ts",
"test:e2e:user-admin": "playwright test tests/e2e/user-admin-flows.spec.ts",
"test:e2e:inventory": "playwright test tests/e2e/feature-inventory.spec.ts",
"test:e2e:inventory:prod": "bash scripts/e2e-inventory-prod.sh",
"test:e2e:ui": "playwright test --ui",
"test:all": "npm run test && npm run test:e2e",
"deploy": "bash scripts/selfhost-deploy-revampit.sh",
"deploy:selfhost": "bash scripts/selfhost-deploy-revampit.sh",
"ship": "bash scripts/ship.sh",
"typecheck": "tsc -p tsconfig.json --noEmit",
"verify": "npm run lint && npm run lint:umlauts && npm run lint:chrome && npm run lint:docs && npm run compliance:ci && npm run typecheck && npm run test && npm run build",
"prod:build": "docker build -f Dockerfile.prod -t revampit-app:latest .",
"prod:up": "docker compose -f docker-compose.prod.yml up -d",
"prod:down": "docker compose -f docker-compose.prod.yml down",
"prod:logs": "docker compose -f docker-compose.prod.yml logs -f",
"prod:restart": "docker compose -f docker-compose.prod.yml restart",
"prod:health": "curl -f http://localhost:3000/api/health",
"hirn:ingest": "npx tsx scripts/hirn-ingest.ts",
"hirn:ingest:docs": "npx tsx scripts/hirn-ingest.ts --dir ./docs",
"hirn:ingest:src": "npx tsx scripts/hirn-ingest.ts --dir ./src --extensions .ts,.tsx",
"hirn:stats": "npx tsx scripts/hirn-ingest.ts --stats",
"transcription:start": "./services/transcription/start.sh",
"transcription:bg": "[ -d services/transcription/.venv ] && (./services/transcription/start.sh &) || echo 'Transcription venv not found. Run: npm run transcription:setup'",
"transcription:setup": "python3 -m venv services/transcription/.venv && services/transcription/.venv/bin/pip install faster-whisper flask",
"transcribe:local": "node scripts/transcribe-local-audio.mjs",
"prepare": "husky",
"i18n:stale": "node scripts/i18n-stale.mjs",
"i18n:stale-update": "node scripts/i18n-stale.mjs --update",
"compliance:i18n-stale": "node scripts/i18n-stale.mjs"
},
"dependencies": {
"@auth/pg-adapter": "^1.11.3",
"@aws-sdk/client-s3": "^3.1117.0",
"@fleet/ai-forms": "github:catomean/ai-forms#v0.1.2",
"@sentry/nextjs": "^10.71.0",
"@tiptap/extension-link": "^3.30.3",
"@tiptap/extension-table": "^3.30.3",
"@tiptap/pm": "^3.30.3",
"@tiptap/react": "^3.30.3",
"@tiptap/starter-kit": "^3.30.3",
"bcryptjs": "^2.4.3",
"busboy": "^1.6.0",
"clsx": "^2.1.1",
"cookie": "^2.0.1",
"cron-parser": "^5.10.0",
"csv-parse": "^7.0.2",
"drizzle-orm": "^0.45.1",
"exceljs": "^4.4.0",
"framer-motion": "^13.1.1",
"gray-matter": "^4.0.3",
"ioredis": "^6.0.0",
"jsonwebtoken": "^9.0.2",
"leaflet": "^1.9.4",
"lru-cache": "^11.5.2",
"lucide-react": "^1.34.0",
"next": "^16.3.2",
"next-auth": "^5.0.0-beta.32",
"next-intl": "^4.13.7",
"next-themes": "^0.4.6",
"nodemailer": "^9.0.1",
"pg": "^8.23.0",
"puppeteer": "^25.8.0",
"qrcode": "^1.5.4",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-markdown": "^10.1.0",
"recharts": "^3.10.1",
"redis": "^6.2.1",
"remark-gfm": "^4.0.1",
"server-only": "^0.0.1",
"sharp": "^0.35.3",
"sonner": "^2.0.8",
"swr": "^2.5.1",
"tailwind-merge": "^3.2.0",
"tiptap-markdown": "^0.9.0",
"uuid": "^14.0.2",
"zod": "^4.3.6"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": "eslint --fix"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.6",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.62.1",
"@swc/helpers": "0.5.23",
"@tailwindcss/postcss": "^4.3.3",
"@testing-library/jest-dom": "^7.0.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.6",
"@types/bcryptjs": "^2.4.6",
"@types/busboy": "^1.5.4",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.5",
"@types/leaflet": "^1.9.22",
"@types/node": "^20.19.43",
"@types/nodemailer": "^7.0.1",
"@types/pg": "^8.23.1",
"@types/qrcode": "^1.5.6",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.5",
"concurrently": "^10.0.5",
"critters": "^0.0.25",
"drizzle-kit": "^0.31.9",
"eslint": "^10.9.1",
"eslint-config-next": "^16.3.2",
"eslint-plugin-react-hooks": "^7.1.1",
"husky": "^9.1.7",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.2.0",
"lint-staged": "^17.3.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.5.26",
"tailwindcss": "^4.3.0",
"typescript": "^5.3.3"
},
"overrides": {
"@swc/helpers": "0.5.23",
"@opentelemetry/core": "^2.8.0",
"fast-xml-parser": "^5.3.6",
"ajv": "^6.14.0",
"minimatch": "^10.2.1",
"nodemailer": "^9.0.1",
"js-yaml": "^4.3.1",
"basic-ftp": ">=5.3.0",
"postcss": "^8.5.26",
"esbuild": "0.28.1",
"shell-quote": "1.10.0",
"brace-expansion": "^5.0.9",
"uuid": "$uuid",
"sharp": "$sharp"
}
}