-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.32 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
{
"name": "ratatoskr",
"version": "0.1.0",
"description": "Automerge-repo sync server with authentication and per-document permissions",
"type": "module",
"private": true,
"scripts": {
"dev": "bun run --watch src/index.ts",
"start": "bun run src/index.ts",
"build:client": "cd client && bun run build:bundle",
"build:binary": "bun run scripts/build-binary.ts",
"test": "bun test",
"test:watch": "bun test --watch",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"typecheck": "tsc --noEmit",
"db:migrate": "bun run src/storage/migrate.ts",
"backup": "bun run scripts/backup.ts",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@types/better-sqlite3": "^7.6.13",
"@types/bun": "latest",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"typescript": "^5.9.3"
},
"lint-staged": {
"*.{js,ts,json,md}": [
"biome check --write --no-errors-on-unmatched"
]
},
"dependencies": {
"@automerge/automerge": "^3.2.2",
"@automerge/automerge-repo": "^2.5.1",
"@fastify/cookie": "^11.0.2",
"@fastify/cors": "^11.2.0",
"@fastify/static": "^9.0.0",
"@fastify/websocket": "^11.2.0",
"fastify": "^5.7.1",
"oauth4webapi": "^3.8.3",
"zod": "^4.3.5"
}
}