forked from Astraguard/Backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.91 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
{
"name": "astraguard-backend",
"version": "0.1.0",
"description": "Verification, scoring, registry, indexing, and public API for Astraguard",
"private": true,
"license": "UNLICENSED",
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "tsx watch src/index.ts",
"workers": "tsx watch src/workers.ts",
"indexer": "tsx watch src/indexer-runner.ts",
"build": "tsc -p tsconfig.json",
"start": "node dist/index.js",
"typecheck": "tsc --noEmit",
"lint": "eslint src test --ext .ts",
"lint:fix": "eslint src test --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"test": "vitest run test/scoring.test.ts test/shared.test.ts test/wasm-runtime.test.ts test/behavioral.test.ts",
"test:integration": "vitest run test/api.integration.test.ts",
"test:all": "vitest run",
"test:watch": "vitest",
"migrate": "tsx db/migrate.ts up",
"migrate:rollback": "tsx db/migrate.ts down",
"migrate:make": "tsx db/migrate.ts make",
"seed": "tsx db/seed.ts",
"check:openapi": "redocly lint src/api/openapi.yaml",
"check:routes": "node scripts/check-routes-drift.mjs"
},
"dependencies": {
"@fastify/cors": "^10.0.1",
"@fastify/rate-limit": "^11.1.0",
"@fastify/sensible": "^6.0.4",
"@stellar/stellar-sdk": "^12.1.0",
"bullmq": "^5.12.0",
"dotenv": "^16.4.5",
"fastify": "^5.10.0",
"ioredis": "^5.4.1",
"knex": "^3.1.0",
"pg": "^8.12.0",
"pino": "^9.3.2",
"pino-pretty": "^11.2.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@redocly/cli": "2.46.0",
"@types/node": "^20.14.15",
"@types/pg": "^8.11.6",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.3.3",
"tsx": "^4.16.5",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
}
}