-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.38 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.38 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
{
"name": "http-api",
"version": "1.0.0",
"description": "Public facing REST API providing a DCI-CRVS standard interface",
"main": "src/index.ts",
"license": "MIT",
"scripts": {
"start": "NODE_ENV=production ts-node src/index.ts",
"dev": "nodemon --watch ../../packages --exec ts-node src/index.ts",
"playground": "nodemon --watch ../../packages --exec ts-node src/playground.ts",
"test": "node --require ts-node/register --test src/**/*.test.ts",
"test:watch": "node --require ts-node/register --test --watch src/**/*.test.ts",
"generate-openapi-types": "openapi-typescript https://raw.githubusercontent.com/spdci/api-standards/refs/heads/draft/release/yaml/crvs_api_v1.0.0.yaml -o ./src/registry-core-api.d.ts && npx prettier --write ./src/crvs-api.d.ts"
},
"dependencies": {
"@hapi/boom": "^10.0.1",
"@hapi/h2o2": "^10.0.4",
"@hapi/hapi": "^21.3.2",
"@opencrvs/toolkit": "^1.9.5-rc.141fdf1",
"@types/jsonwebtoken": "^9.0.10",
"@types/lodash": "^4.14.197",
"@types/node": "^24.0.0",
"hapi-pino": "^13.0.0",
"jose": "^5.0.0",
"jsonwebtoken": "^9.0.3",
"lodash": "^4.17.21",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"zod": "^3.22.2",
"zod-validation-error": "^5.0.0"
},
"devDependencies": {
"msw": "2.12.10",
"nodemon": "^3.0.1",
"openapi-typescript": "^7.0.0",
"pino-pretty": "^13.0.0"
}
}