-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.64 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
{
"name": "kf-api-arranger",
"version": "1.0.0",
"description": ":factory: a data-model aware GraphQL API that sits above an Elasticsearch cluster",
"main": "src/index.js",
"scripts": {
"start": "node ./dist/src/index.js",
"test": "jest",
"test:watch": "jest --watch",
"test:silent": "jest --silent",
"cleanAndBuild": "rm -rf ./dist/* && tsc --build",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"cbs": "npm run cleanAndBuild && npm start",
"admin-project": "node --experimental-modules=node --es-module-specifier-resolution=node admin/run.mjs",
"post-re-alias-helper": "node --experimental-modules=node --es-module-specifier-resolution=node admin/postReleaseIndicesToAliasesHelper.mjs",
"delete-clinical-indices-helper": "node --experimental-modules=node --es-module-specifier-resolution=node admin/deleteClinicalIndicesFromRelease.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kids-first/kf-api-arranger.git"
},
"keywords": [
"arranger"
],
"author": "",
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"bugs": {
"url": "https://github.com/kids-first/kf-api-arranger/issues"
},
"homepage": "https://github.com/kids-first/kf-api-arranger#readme",
"dependencies": {
"@arranger/admin": "^2.19.4",
"@arranger/middleware": "^2.19.4",
"@arranger/server": "^2.19.4",
"@aws-sdk/client-s3": "^3.689.0",
"@aws-sdk/s3-request-presigner": "^3.689.0",
"@elastic/elasticsearch": "^7.11.0",
"ajv": "^8.17.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"filesize": "^3.6.1",
"graphql-parse-resolve-info": "^4.13.0",
"http-status-codes": "^2.3.0",
"keycloak-connect": "^26.0.5",
"lodash": "^4.17.21",
"node-cache": "^5.1.2",
"node-fetch": "^2.6.5",
"regenerator-runtime": "^0.14.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/express-serve-static-core": "^5.0.1",
"@types/jest": "^27.0.2",
"@types/lodash": "^4.14.171",
"@types/node": "^16.3.2",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest": "^27.0.6",
"json-diff": "^1.0.6",
"jsonwebtoken": "^8.5.1",
"prettier": "^1.19.1",
"supertest": "^6.1.2",
"ts-jest": "^27.0.4",
"typescript": "^4.3.5"
}
}