-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 976 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 976 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
{
"name": "morph",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Document-engine command host — SuperDoc Document API over HTTP",
"engines": {
"node": ">=20"
},
"scripts": {
"start": "node --import tsx src/server.ts",
"dev": "node --import tsx --watch src/server.ts",
"test": "SUPERDOC_PUBLIC_LICENSE_KEY=${SUPERDOC_PUBLIC_LICENSE_KEY:-morph-test-license} node --import tsx --test --test-concurrency=1 --test-reporter spec tests/*.test.ts",
"spike": "node --import tsx scripts/spike.ts",
"bench:memory": "node --import tsx scripts/memory-bench.ts"
},
"dependencies": {
"@fastify/cors": "^11.2.0",
"@fastify/multipart": "^10.0.0",
"@fastify/websocket": "^11.2.0",
"@hocuspocus/server": "^2.15.3",
"@superdoc/sdk": "^2.8.0",
"fastify": "^5.8.5",
"ioredis": "^5.8.2"
},
"devDependencies": {
"@types/node": "^22.8.6",
"tsx": "^4.22.4",
"typescript": "^5.6.3"
}
}