-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.64 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.64 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
{
"name": "reflect-memory",
"version": "0.1.0",
"private": true,
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"backup": "tsx scripts/backup-db.ts",
"seed-review": "tsx scripts/seed-review-data.ts",
"bootstrap:enterprise": "bash scripts/enterprise-bootstrap.sh .env.enterprise",
"validate:enterprise": "node scripts/validate-enterprise-env.mjs .env.enterprise",
"smoke:enterprise": "node scripts/smoke-test-enterprise.mjs",
"compat:check": "node scripts/compat-check.mjs",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration",
"test:live-smoke": "node tests/live/live-smoke.test.mjs"
},
"dependencies": {
"@fastify/cors": "^11.2.0",
"@fastify/formbody": "^8.0.2",
"@fastify/http-proxy": "^11.4.1",
"@fastify/rate-limit": "^10.3.0",
"@modelcontextprotocol/sdk": "^1.27.1",
"@types/express": "^5.0.6",
"better-sqlite3": "^11",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"fastify": "^5",
"graphology": "^0.26.0",
"graphology-communities-louvain": "^2.0.2",
"jose": "^6.1.3",
"js-yaml": "^4.1.1",
"stripe": "^20.4.0",
"svix": "^1.86.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@anthropic-ai/sdk": "^0.90.0",
"@types/better-sqlite3": "^7",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22",
"@vitest/coverage-v8": "^4.1.4",
"tsx": "^4",
"typescript": "^5",
"vitest": "^4.1.4"
}
}