forked from awslabs/fhir-works-on-aws-deployment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 3.3 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "fhir-works-on-aws-deployment",
"version": "3.0.0",
"description": "FHIR Works on AWS deployment",
"stackname": "fhir-works-on-aws-deployment",
"main": "src/index.ts",
"author": {
"name": "Amazon Web Services",
"email": "[email protected]",
"url": "https://aws.amazon.com/"
},
"contributors": [
"Robert Smayda <[email protected]>",
"Tim Nguyen <[email protected]>",
"Nestor Carvantes <[email protected]>"
],
"license": "Apache-2.0",
"scripts": {
"lint": "eslint . --ext .ts,.tsx",
"lint-fix": "eslint --fix . --ext .ts,.tsx",
"build": "tsc",
"watch": "tsc -w",
"test": "jest --silent --passWithNoTests --testPathPattern=src/*",
"int-test": "jest --testPathPattern=integration-test/*",
"test-coverage": "jest --coverage",
"release": "yarn run build && yarn run lint && yarn run test",
"clean": "rm -rf build/* node_modules/* dist/* .serverless/* .nyc_output/*",
"local": "node .",
"compile-igs": "ts-node scripts/compile-igs.ts",
"serverless-deploy": "serverless deploy",
"serverless-remove": "serverless remove",
"serverless-info": "serverless info"
},
"dependencies": {
"aws-sdk": "^2.785.0",
"axios": "^0.21.1",
"fhir-works-on-aws-authz-rbac": "4.1.1",
"fhir-works-on-aws-interface": "9.0.0",
"fhir-works-on-aws-persistence-ddb": "3.5.0",
"fhir-works-on-aws-routing": "5.4.1",
"fhir-works-on-aws-search-es": "3.0.0",
"serverless-http": "^2.3.1",
"yargs": "^16.2.0"
},
"devDependencies": {
"@types/chance": "^1.1.1",
"@types/express": "^4.17.2",
"@types/jest": "^26.0.19",
"@types/node": "^12",
"@types/sinon": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"chance": "^1.1.7",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"jest-mock-extended": "^1.0.8",
"lodash": "^4.17.21",
"prettier": "^1.19.1",
"qs": "^6.10.1",
"serverless": "2.29.0",
"serverless-bundle": "4.0.1",
"serverless-offline": "^5.12.1",
"serverless-step-functions": "^2.27.1",
"sinon": "^9.0.2",
"tmp-promise": "^3.0.2",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3",
"wait-for-expect": "^3.0.2"
},
"resolutions": {
"dot-prop": "^5.1.1",
"bl": "^4.0.3",
"node-fetch": "^2.6.1",
"urijs": "1.19.6",
"xmlhttprequest-ssl": "^1.6.2",
"postcss": "^8.2.10",
"underscore": "^1.12.1",
"http-errors": "1.8.0",
"glob-parent": "^5.1.2",
"ws": "^7.4.6",
"trim-newlines": "^3.0.1",
"normalize-url": "^4.5.1"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"coverageReporters": [
"text",
"html"
],
"transform": {
"\\.(ts)$": "ts-jest"
},
"testEnvironment": "node",
"testRunner": "jest-circus/runner",
"testRegex": ".test.ts",
"testPathIgnorePatterns": [
"<rootDir>/auditLogMover/",
"<rootDir>/node_modules/"
]
},
"repository": {
"type": "git",
"url": "git://github.com/awslabs/fhir-works-on-aws-deployment.git"
},
"engines": {
"node": ">=12.0.0"
}
}