-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
62 lines (62 loc) · 2.07 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "icd-10-api",
"description": "API to search the 10th revision of the International Statistical Classification of Diseases Database.",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "nodemon --watch 'src/**/*' -e ts --exec 'npm run lint && npm run prettier && npm run debugger'",
"debug": "nodemon --watch 'src/**/*' -e ts --exec 'npm run lint && npm run prettier && npm run debugger'",
"debug-brk": "nodemon --watch 'src/**/*' -e ts --exec 'npm run lint && npm run prettier && npm run debugger-brk'",
"lint": "eslint 'src/**/*.ts' 'tests/**/*.ts' --fix",
"lint:ci": "eslint 'src/**/*.ts' 'tests/**/*.ts'",
"test:ci": "jest --passWithNoTests",
"prettier": "prettier --write 'src/**/*.ts' 'tests/**/*.ts'",
"debugger": "NODE_ENV=development node --require ts-node/register --inspect=0.0.0.0:9229 src/server.ts",
"debugger-brk": "NODE_ENV=development node --require ts-node/register --inspect-brk=0.0.0.0:9229 src/server.ts",
"build": "tsc --project tsconfig.production.json",
"production": "node -r tsconfig-paths/register build/server.js"
},
"dependencies": {
"@ahryman40k/ts-fhir-types": "4.0.39",
"body-parser": "^1.20.2",
"express": "^4.18.2",
"fuse.js": "^7.0.0",
"tsconfig-paths": "^4.2.0",
"tslib": "^2.6.2"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"jest-decorator": "^1.0.1",
"nodemon": "^3.0.2",
"prettier": "^3.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"eslintConfig": {
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2020
},
"plugins": [
"@typescript-eslint"
],
"extends": [
"plugin:@typescript-eslint/recommended",
"prettier"
],
"env": {
"es6": true,
"node": true
}
},
"prettier": {
"printWidth": 100
}
}