-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.8 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.8 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "server-2",
"version": "0.1.0",
"private": true,
"type": "module",
"packageManager": "pnpm@11.0.9",
"engines": {
"node": ">=25 <26",
"pnpm": ">=11 <12"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"unrs-resolver"
]
},
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsc -p tsconfig.build.json",
"start": "node dist/src/server.js",
"format": "prettier --check .",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"test": "vitest run --exclude 'src/test/integration/**/*.test.ts' --exclude 'src/**/tests/postgres.test.ts'",
"test:coverage": "vitest run --coverage --no-file-parallelism",
"test:integration": "vitest run src/test/integration $(find src -path '*/tests/postgres.test.ts' -print) --no-file-parallelism",
"test:schema": "vitest run src/test/integration/schema.test.ts",
"db:migrate": "tsx src/infra/db/migrate.ts",
"openapi:export": "tsx src/openapi/export-openapi.ts",
"openapi:verify": "tsx src/openapi/verify-openapi.ts",
"openapi:check": "pnpm run openapi:verify && openapi-typescript openapi/server-2.openapi.json -o /tmp/server-2-openapi.d.ts",
"ops:backup:check": "tsx src/operations/check-backup-runbook.ts",
"ops:boundary:check": "tsx src/operations/check-app-boundary-guards.ts",
"ops:stats:readiness": "tsx src/operations/statistics-readiness.ts",
"ops:stats:legacy-export": "tsx src/operations/export-legacy-public-stats.ts",
"ops:stats:coverage": "tsx src/operations/recalculate-statistics.ts --dry-run",
"ops:stats:recalculate": "tsx src/operations/recalculate-statistics.ts",
"verify": "pnpm run format && pnpm run lint && pnpm run typecheck && pnpm test && pnpm run test:integration && pnpm run openapi:check && pnpm run ops:backup:check && pnpm run ops:boundary:check && pnpm run test:coverage"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1045.0",
"@aws-sdk/s3-request-presigner": "^3.1045.0",
"@fastify/swagger": "^9.7.0",
"@fastify/swagger-ui": "^5.2.6",
"@fastify/type-provider-typebox": "^6.1.0",
"@sinclair/typebox": "^0.34.49",
"amqplib": "^1.0.7",
"dotenv": "^17.4.2",
"envalid": "^8.1.1",
"fastify": "^5.8.5",
"kysely": "^0.29.0",
"pg": "^8.20.0",
"pino": "^10.3.1",
"prom-client": "^15.1.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/amqplib": "^0.10.8",
"@types/node": "^25.6.2",
"@types/pg": "^8.20.0",
"@vitest/coverage-v8": "^4.1.5",
"eslint": "^10.3.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-unicorn": "^64.0.0",
"openapi-typescript": "^7.13.0",
"prettier": "^3.8.3",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.2",
"vitest": "^4.1.5"
}
}