-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 4.81 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 4.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "kamra",
"version": "0.0.0",
"private": true,
"type": "module",
"engines": {
"node": "24.x"
},
"scripts": {
"build": "npm run build:web && npm run build:api",
"build:api": "tsc -p tsconfig.api.json",
"build:web": "npm run generate:public-config && ng build",
"contracts:catalog": "node ./node_modules/tsx/dist/cli.mjs scripts/generate-catalog-schemas.ts",
"crawl:export": "node --env-file-if-exists=.env.local ./node_modules/tsx/dist/cli.mjs scripts/export-crawl-archive.ts",
"crawl:import": "node --env-file-if-exists=.env.local ./node_modules/tsx/dist/cli.mjs scripts/import-crawl-archive.ts",
"crawl:remove": "node --env-file-if-exists=.env.local ./node_modules/tsx/dist/cli.mjs scripts/remove-crawled-content.ts",
"dev": "concurrently -k -n web,api -c blue,green \"npm:dev:web\" \"npm:dev:api\"",
"dev:api": "node --env-file-if-exists=.env.local ./node_modules/tsx/dist/cli.mjs watch --clear-screen=false scripts/local-api.ts",
"dev:web": "npm run generate:public-config && ng serve --host 0.0.0.0 --port 4200 --proxy-config proxy.conf.json",
"generate:public-config": "node scripts/generate-public-config.ts",
"audit:ingestion-quality": "node --env-file-if-exists=.env.local ./node_modules/tsx/dist/cli.mjs scripts/audit-ingestion-quality.ts",
"maintenance:alpha-domain-language": "node --env-file-if-exists=.env.local ./node_modules/tsx/dist/cli.mjs scripts/maintenance-alpha-domain-language.ts",
"mvp:preflight": "node ./node_modules/tsx/dist/cli.mjs scripts/mvp-preflight.ts",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"seed": "node --env-file-if-exists=.env.local ./node_modules/tsx/dist/cli.mjs scripts/seed.ts",
"seed:demo-household": "node --env-file-if-exists=.env.local ./node_modules/tsx/dist/cli.mjs scripts/seed-demo-household.ts",
"aldi:ingest": "node --env-file-if-exists=.env.local ./node_modules/tsx/dist/cli.mjs scripts/ingest-aldi-offers.ts",
"coop:ingest": "node --env-file-if-exists=.env.local ./node_modules/tsx/dist/cli.mjs scripts/ingest-coop-offers.ts",
"lidl:ingest": "node --env-file-if-exists=.env.local ./node_modules/tsx/dist/cli.mjs scripts/ingest-lidl-brochures.ts",
"penny:ingest": "node --env-file-if-exists=.env.local ./node_modules/tsx/dist/cli.mjs scripts/ingest-penny-offers.ts",
"process:ingestion": "node --env-file-if-exists=.env.local ./node_modules/tsx/dist/cli.mjs scripts/process-ingestion.ts",
"repair:lidl-brochure": "node --env-file-if-exists=.env.local ./node_modules/tsx/dist/cli.mjs scripts/repair-lidl-brochure-rows.ts",
"synthetic:pdf:ingest": "node --env-file-if-exists=.env.local ./node_modules/tsx/dist/cli.mjs scripts/ingest-synthetic-pdf-source.ts",
"synthetic:ingest": "node --env-file-if-exists=.env.local ./node_modules/tsx/dist/cli.mjs scripts/ingest-synthetic-source.ts",
"smoke:catalog": "node --env-file-if-exists=.env.local ./node_modules/tsx/dist/cli.mjs scripts/catalog-smoke.ts",
"smoke:demo-household": "node --env-file-if-exists=.env.local ./node_modules/tsx/dist/cli.mjs scripts/demo-household-smoke.ts",
"smoke:shopping-trip": "node --env-file-if-exists=.env.local ./node_modules/tsx/dist/cli.mjs scripts/shopping-trip-smoke.ts",
"smoke:transactions": "node --env-file-if-exists=.env.local ./node_modules/tsx/dist/cli.mjs scripts/transaction-smoke.ts",
"teardown:demo-household": "node --env-file-if-exists=.env.local ./node_modules/tsx/dist/cli.mjs scripts/teardown-demo-household.ts",
"start:api": "node --env-file-if-exists=.env.local dist/api/scripts/local-api.js",
"start:api:render": "node dist/api/scripts/local-api.js",
"test": "vitest run",
"test:browser": "playwright test",
"test:integration": "vitest run --config vitest.integration.config.ts",
"typecheck": "tsc -p tsconfig.app.json --noEmit && tsc -p tsconfig.api.json --noEmit",
"validate:processed-ingestion": "node --env-file-if-exists=.env.local ./node_modules/tsx/dist/cli.mjs scripts/validate-processed-ingestion.ts"
},
"dependencies": {
"@angular/common": "^22.0.0",
"@angular/compiler": "^22.0.0",
"@angular/core": "^22.0.0",
"@angular/forms": "^22.0.5",
"@angular/platform-browser": "^22.0.0",
"@angular/router": "^22.0.5",
"@vercel/speed-insights": "^2.0.0",
"mongodb": "^7.4.0",
"pdf-lib": "^1.17.1",
"pdfjs-dist": "^6.1.200",
"zone.js": "^0.15.1"
},
"devDependencies": {
"@angular/build": "^22.0.5",
"@angular/cli": "^22.0.5",
"@angular/compiler-cli": "^22.0.5",
"@eslint/js": "^9.30.0",
"@types/node": "^24.13.2",
"concurrently": "^9.2.3",
"eslint": "^9.39.4",
"globals": "^16.5.0",
"playwright": "^1.61.1",
"prettier": "^3.9.5",
"tsx": "^4.23.0",
"typescript": "^6.0.0",
"typescript-eslint": "^8.62.1",
"vitest": "^4.1.9"
}
}