This repository has been archived by the owner on Apr 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
106 lines (106 loc) · 2.91 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
{
"name": "fhir-works-on-aws-routing",
"version": "6.6.2",
"description": "FHIR Works on AWS routing implementation",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": {
"name": "Amazon Web Services",
"email": "fhir-works-on-aws-dev@amazon.com",
"url": "https://aws.amazon.com/"
},
"contributors": [
"Robert Smayda <smayda@amazon.com>",
"Tim Nguyen <thingut@amazon.com>",
"Nestor Carvantes <nestorba@amazon.com>"
],
"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",
"test-coverage": "jest --coverage",
"release": "yarn run build && yarn run lint && yarn run test",
"clean": "rm -rf build/* node_modules/* dist/* .serverless/* .nyc_output/* lib/*",
"local": "node .",
"prepublish": "tsc",
"standard-version": "standard-version --skip.tag=true"
},
"dependencies": {
"@types/cors": "^2.8.7",
"@types/express-serve-static-core": "^4.17.2",
"ajv": "^6.11.0",
"ajv-errors": "^1.0.1",
"aws-sdk": "^2.1000.0",
"aws-xray-sdk": "^3.3.3",
"cors": "^2.8.5",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"fhir-works-on-aws-interface": "^12.1.1",
"flat": "^5.0.0",
"http-errors": "^1.8.0",
"lodash": "^4.17.15",
"mime-types": "^2.1.26",
"sanitize-html": "^2.8.0",
"serverless-http": "^2.3.1",
"uuid": "^3.4.0"
},
"devDependencies": {
"@types/errorhandler": "^0.0.32",
"@types/express": "^4.17.2",
"@types/flat": "^5.0.1",
"@types/http-errors": "^1.8.0",
"@types/jest": "^26.0.19",
"@types/lodash": "^4.14.157",
"@types/mime-types": "^2.1.0",
"@types/mock-req-res": "^1.1.2",
"@types/node": "^12",
"@types/sanitize-html": "^2.8.0",
"@types/uuid": "^3.4.7",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"aws-sdk-mock": "^5.1.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^26.6.3",
"jest-each": "^26.6.2",
"jest-mock-extended": "^1.0.8",
"mock-req-res": "^1.2.0",
"prettier": "^2.4.1",
"sinon": "^9.0.3",
"standard-version": "^9.3.2",
"supertest": "^6.1.6",
"ts-jest": "^26.4.4",
"typescript": "^4.9.4"
},
"resolutions": {
"path-parse": "^1.0.7",
"set-value": "^4.0.1",
"qs": "6.10.3",
"json5": "2.2.3",
"xml2js":"^0.5.0"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"collectCoverage": true,
"transform": {
"\\.(ts)$": "ts-jest"
},
"testRegex": ".test.ts"
},
"repository": {
"type": "git",
"url": "git://github.com/awslabs/fhir-works-on-aws-routing.git"
},
"engines": {
"node": ">=12.0.0"
}
}