-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 1.17 KB
/
package.json
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
{
"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",
"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://spdci.github.io/standards/release/yaml/registry_core_api_v1.0.0.yaml -o ./src/registry-core-api.d.ts && npx prettier --write ./src/registry-core-api.d.ts"
},
"dependencies": {
"@hapi/boom": "^10.0.1",
"@hapi/h2o2": "^10.0.4",
"@hapi/hapi": "^21.3.2",
"@types/lodash": "^4.14.197",
"@types/node": "^20.5.3",
"hapi-pino": "^12.1.0",
"jose": "^5.0.0",
"lodash": "^4.17.21",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"zod": "^3.22.2",
"zod-validation-error": "^3.0.0"
},
"devDependencies": {
"msw": "2.4.9",
"nodemon": "^3.0.1",
"openapi-typescript": "^7.0.0",
"pino-pretty": "^11.0.0"
}
}