-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 3.04 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 3.04 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
{
"name": "deepvault-nexus",
"version": "1.5.2",
"private": true,
"type": "module",
"scripts": {
"dev": "node scripts/run-with-cleanup.mjs vite",
"dev:worker": "node scripts/dev-all.mjs --worker-only",
"dev:all": "node scripts/dev-all.mjs",
"build": "vite build",
"preview": "vite preview",
"prod": "npm run build && docker compose up -d --build",
"prod:up": "docker compose up -d",
"prod:down": "docker compose down",
"prod:logs": "docker compose logs -f",
"docker:build": "docker build -f worker/Dockerfile -t deepvault-worker .",
"docker:worker": "node scripts/docker-worker.mjs",
"docker:stop": "docker stop deepvault-worker-dev",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"test": "node --max-old-space-size=6144 ./node_modules/vitest/vitest.mjs run --configLoader runner",
"test:coverage": "node --max-old-space-size=6144 ./node_modules/vitest/vitest.mjs run --configLoader runner --coverage",
"test:watch": "node --max-old-space-size=6144 ./node_modules/vitest/vitest.mjs --configLoader runner",
"e2e": "node scripts/run-with-cleanup.mjs playwright test --config playwright.e2e.config.js",
"e2e:pwa-refresh": "node scripts/run-with-cleanup.mjs playwright test --config playwright.pwa-refresh.config.js",
"ingest": "node scripts/run-with-cleanup.mjs tsx scripts/ingest.ts",
"ingest:live": "node scripts/run-with-cleanup.mjs tsx scripts/ingest.ts --mode live",
"analyze": "node scripts/run-with-cleanup.mjs tsx scripts/analyze-corpus.ts",
"analyze:publish": "node scripts/run-with-cleanup.mjs tsx scripts/publish-analyzed-corpus.ts",
"evaluate": "node scripts/run-with-cleanup.mjs tsx scripts/evaluate.ts",
"evaluate:live": "node scripts/run-with-cleanup.mjs tsx scripts/evaluate.ts --mode live",
"export:live": "node scripts/run-with-cleanup.mjs tsx scripts/export-live.ts",
"check": "node scripts/check.mjs",
"ci:anti-zombie": "node scripts/ci-anti-zombie-check.mjs",
"ci:local": "npm run lint && npm run typecheck && npm run test:coverage && npm run build && rtk node --import tsx scripts/evaluate.ts && rtk npx playwright install chromium && rtk npm run e2e && rtk npm run e2e:pwa-refresh"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.88.0",
"@azure/msal-browser": "^5.7.0",
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"devDependencies": {
"@eslint/js": "^9.30.1",
"@playwright/test": "^1.54.2",
"@testing-library/jest-dom": "^6.6.4",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^4.4.1",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.30.1",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.21",
"globals": "^16.3.0",
"jsdom": "^26.1.0",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.1",
"vite": "^6.3.5",
"vite-plugin-pwa": "^0.21.2",
"vitest": "^3.2.4"
}
}