-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.2 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
35
36
37
38
39
{
"type": "module",
"name": "peak-server-codes",
"description": "This is a microservice for searching and looking up standardized medical codes.",
"version": "1.0.0",
"main": "app.js",
"directories": {
"test": "test"
},
"scripts": {
"start": "fastify start -l info app.js",
"dev": "fastify start -w -l info -P app.js --ignore-watch='.git data test'",
"pretest": "semistandard",
"lint": "semistandard --fix",
"test": "node --test-concurrency 1 --test $(find test -name '*.test.js')",
"test:db:reset": "DATABASE_URL=${DATABASE_URL}_test npx prisma migrate reset --force"
},
"keywords": [],
"author": "Francis Li <[email protected]>",
"license": "AGPL-3.0-only",
"dependencies": {
"@fastify/autoload": "^6.0.0",
"@fastify/sensible": "^6.0.0",
"@fastify/swagger": "^9.1.0",
"@prisma/client": "^5.20.0",
"@scalar/fastify-api-reference": "^1.25.26",
"fastify": "^5.0.0",
"fastify-cli": "^7.0.1",
"fastify-plugin": "^5.0.0",
"http-status-codes": "^2.3.0"
},
"devDependencies": {
"@getbigger-io/prisma-fixtures-cli": "^2.0.1",
"c8": "^10.1.2",
"prisma": "^5.20.0",
"sax": "^1.4.1",
"semistandard": "^17.0.0"
}
}