-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
154 lines (154 loc) · 6.55 KB
/
Copy pathpackage.json
File metadata and controls
154 lines (154 loc) · 6.55 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
{
"name": "setpoint",
"private": true,
"version": "1.0.0",
"type": "module",
"engines": {
"node": ">=24.15.0 <25"
},
"scripts": {
"dev:client": "vite",
"dev:server": "node --watch server/index.ts",
"predev": "node scripts/regen-architecture.mts",
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"demo": "VITE_EA_DEMO=1 vite",
"dev:ai-search-turso": "EA_DEV_DB_ADAPTER=turso AI_SEARCH_VECTOR_ADAPTER=turso EA_EMAIL_SEARCH_EMBEDDINGS_DISABLED=1 concurrently \"npm run dev:server\" \"npm run dev:client\"",
"postinstall": "npm rebuild better-sqlite3 && simple-git-hooks",
"regen:architecture": "node scripts/regen-architecture.mts",
"build": "vite build",
"build:demo": "VITE_EA_DEMO=1 vite build --outDir dist-demo && cp dist-demo/index.html dist-demo/404.html",
"preview:demo": "vite preview --outDir dist-demo",
"start": "NODE_ENV=production node server/index.ts",
"db:init": "node server/db/migrate.ts",
"migration:catchup": "node server/scripts/cutover-catchup.ts",
"auth:reset-passkeys": "node server/scripts/reset-passkeys.ts",
"security:rotate-encryption-key": "node server/scripts/rotate-encryption-key.ts",
"lint": "eslint .",
"typecheck:client": "tsc -p tsconfig.client.json --pretty false",
"typecheck:server": "tsc -p tsconfig.server.json --pretty false",
"typecheck:tools": "tsc -p tsconfig.tools.json --pretty false",
"typecheck": "tsc -b --pretty false",
"verify": "npm run typecheck && npm run lint && npm run test:fast && npm run test:slow && npm run check:harness && npm run build",
"check:harness": "node scripts/check-agent-harness.mts",
"check:reachability": "node scripts/check-module-reachability.mts",
"check:exports": "node scripts/audit-test-only-exports.mts",
"check:typescript-migration": "node scripts/check-typescript-migration.mts",
"test": "node --no-experimental-webstorage node_modules/vitest/vitest.mjs run",
"test:fast": "node --no-experimental-webstorage node_modules/vitest/vitest.mjs run --project node --project happy-dom --project jsdom",
"test:slow": "node --no-experimental-webstorage node_modules/vitest/vitest.mjs run --project slow-integration",
"test:watch": "node --no-experimental-webstorage node_modules/vitest/vitest.mjs",
"triage:preflight": "node server/scripts/triage-preflight-dry-run.ts",
"triage:eval": "node server/scripts/triage-eval.ts",
"financial-email:observe": "node server/scripts/financial-email-observe-report.ts",
"financial-provider:replay": "node server/scripts/financial-provider-replay.ts",
"financial-admission:eval": "node server/scripts/financial-admission-eval.ts",
"email-search:eval": "node server/scripts/email-search-retrieval-eval.ts",
"email-search:eval:seed": "node server/scripts/seed-email-search-retrieval-eval.ts",
"email-search:date-backfill": "node server/scripts/backfill-email-date-utc.ts",
"email:acknowledge-history": "node server/scripts/acknowledge-email-history.ts",
"email:reindex-evidence": "node server/scripts/reindex-email-evidence.ts",
"ai-search:embedding-status": "node server/scripts/email-search-embedding-status.ts",
"ai-search:backfill": "node server/scripts/email-search-embedding-backfill.ts",
"actual:hydrate-cache": "node server/scripts/hydrate-actual-cache.ts",
"actual:prune-cache": "node server/scripts/prune-actual-cache.ts",
"test:e2e": "playwright test",
"test:e2e:setup": "playwright test --project=setup",
"test:e2e:headed": "playwright test --headed",
"test:e2e:mobile": "playwright test --project=mobile-chromium",
"test:e2e:ui": "playwright test --ui",
"actual": "node --env-file=.env node_modules/@actual-app/cli/dist/cli.js",
"db:local": "node server/scripts/local-db.ts"
},
"dependencies": {
"@actual-app/api": "^26.9.0",
"@actual-app/cli": "^26.9.0",
"@base-ui/react": "^1.3.0",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@fontsource/fira-code": "^5.2.7",
"@fontsource/montserrat": "^5.2.8",
"@google-cloud/pubsub": "^6.1.0",
"@icons-pack/react-simple-icons": "^13.13.0",
"@libsql/client": "^0.17.4",
"@simplewebauthn/browser": "^13.3.0",
"@simplewebauthn/server": "^13.3.0",
"@tailwindcss/vite": "^4.2.2",
"@tldraw/assets": "5.3.2",
"bcrypt": "^6.0.0",
"chrono-node": "^2.9.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"cookie-parser": "^1.4.7",
"dompurify": "^3.3.3",
"dotenv": "^17.2.3",
"express": "^4.18.2",
"express-rate-limit": "^8.3.1",
"html-to-text": "^10.0.0",
"imapflow": "^1.2.16",
"lodash": "^4.18.1",
"lodash.isequal": "file:vendor/lodash.isequal",
"lucide-react": "^1.7.0",
"mailparser": "^3.9.6",
"motion": "^12.38.0",
"node-cron": "^4.2.1",
"pdfjs-dist": "^6.2.108",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-router": "^8.3.0",
"rss-parser": "^3.13.0",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.2",
"tldraw": "5.3.2",
"tw-animate-css": "^1.4.0"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@playwright/test": "^1.59.1",
"@testing-library/react": "^16.3.2",
"@types/bcrypt": "^6.0.0",
"@types/cookie-parser": "^1.4.10",
"@types/express": "^4.17.25",
"@types/html-to-text": "^9.0.4",
"@types/node": "^24.13.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/supertest": "^7.2.1",
"@typescript/native": "npm:typescript@^7.0.2",
"@vitejs/plugin-react": "^6.0.1",
"concurrently": "^8.2.2",
"eslint": "^9.39.4",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"fake-indexeddb": "^6.2.5",
"globals": "^17.4.0",
"happy-dom": "^20.10.3",
"jsdom": "^29.1.1",
"simple-git-hooks": "^2.13.1",
"supertest": "^7.2.2",
"typescript": "npm:@typescript/typescript6@^6.0.2",
"typescript-eslint": "^8.64.0",
"vite": "^8.1.3",
"vitest": "^4.1.2"
},
"overrides": {
"adm-zip": "0.6.0",
"better-sqlite3": "13.0.3"
},
"simple-git-hooks": {
"pre-commit": "node scripts/regen-architecture.mts && git add ARCHITECTURE.md",
"pre-push": "npm run verify"
},
"allowScripts": {
"bcrypt@6.0.0": true,
"better-sqlite3@13.0.3": true,
"simple-git-hooks@2.13.1": true,
"fsevents@2.3.3": true,
"fsevents@2.3.2": true,
"protobufjs@7.6.6": true
}
}