generated from mgramigna/typescript-node-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.97 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
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "fqm-execution-service",
"version": "0.7.0",
"description": "FHIR Quality Measure Execution Service",
"main": "build/server.js",
"files": [
"build/*"
],
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"fqm-execution": "^0.8.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/express": "^4.17.7",
"@types/fhir": "0.0.34",
"@types/jest": "^26.0.5",
"@types/jest-when": "^2.7.1",
"@types/node": "^14.0.23",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"jest": "^26.1.0",
"jest-when": "^2.7.2",
"prettier": "^2.0.5",
"supertest": "^4.0.2",
"ts-jest": "^26.1.3",
"typescript": "^3.9.7"
},
"scripts": {
"start": "tsc && node build/server.js",
"build": "tsc",
"build:watch": "tsc -w",
"lint": "tsc && eslint \"**/*.{js,ts}\"",
"lint:fix": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix",
"prettier": "prettier --check \"**/*.{js,ts}\"",
"prettier:fix": "prettier --write \"**/*.{js,ts}\"",
"test": "jest",
"check": "npm run test && npm run lint && npm run prettier"
},
"repository": {
"type": "git",
"url": "git+https://github.com/projecttacoma/fqm-execution.git"
},
"contributors": [
{
"name": "Chris Hossenlopp",
"email": "[email protected]"
},
{
"name": "Matt Gramigna",
"email": "[email protected]"
},
{
"name": "Michael O'Keefe",
"email": "[email protected]"
},
{
"name": "Tom Strassner",
"email": "[email protected]"
},
{
"name": "Lauren DiCristofaro",
"email": "[email protected]"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/projecttacoma/fqm-execution-service/issues"
},
"homepage": "https://github.com/projecttacoma/fqm-execution-service#readme"
}