-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 921 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 921 Bytes
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
{
"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"
},
"dependencies": {
"@fastify/cors": "^11.2.0",
"@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",
"jose": "^6.1.3",
"js-yaml": "^4.1.1",
"stripe": "^20.4.0",
"svix": "^1.86.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/better-sqlite3": "^7",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22",
"tsx": "^4",
"typescript": "^5"
}
}