-
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.19 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.19 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": "@destaquesgovbr/activitypub-server",
"version": "0.1.0",
"private": true,
"type": "module",
"packageManager": "pnpm@10.26.0",
"engines": {
"node": ">=22"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"test": "vitest run",
"test:unit": "vitest run --project unit",
"test:integration": "vitest run --project integration",
"test:e2e": "vitest run --project e2e",
"test:watch": "vitest --project unit",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"seed": "tsx scripts/seed-actors.ts",
"migrate": "tsx scripts/migrate.ts"
},
"dependencies": {
"@fedify/fedify": "^1.10.3",
"@fedify/hono": "^1.10.3",
"@fedify/postgres": "^1.10.3",
"@hono/node-server": "^1.19.9",
"@js-temporal/polyfill": "^0.5.1",
"@logtape/logtape": "^2.0.2",
"hono": "^4.11.9",
"postgres": "^3.4.8"
},
"devDependencies": {
"@biomejs/biome": "^2.3.15",
"@fedify/testing": "^1.10.3",
"@testcontainers/postgresql": "^11.11.0",
"@types/node": "^22.0.0",
"testcontainers": "^11.11.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^4.0.18",
"yaml": "^2.8.2"
}
}