-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.9 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
{
"name": "kf-api-portal-reports",
"version": "1.3.0",
"description": "The Download Clinical Data API offers an endpoint to generate a report of clinical data based on a query built using the:",
"main": "index.js",
"engines": {
"node": ">=18.18.0",
"npm": ">=10.5.0"
},
"scripts": {
"build": "npm run clean; tsc ",
"build:run": "npm run build; npm start",
"clean": "rm -rf ./dist/* ",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"dev": "nodemon",
"start": "ts-node ./src/index.ts",
"test": "jest --watchAll",
"test:silent": "jest --silent",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kids-first/kf-download-data.git"
},
"author": "Kids First DRC",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/kids-first/kf-download-data/issues"
},
"homepage": "https://github.com/kids-first/kf-download-data#readme",
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.4",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.1.0",
"jest": "^29.7.0",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"@arranger/middleware": "2.16.1",
"@elastic/elasticsearch": "^7.4.0",
"cors": "^2.8.5",
"date-fns": "^2.30.0",
"dotenv": "^16.4.5",
"excel4node": "^1.8.2",
"express": "^4.19.2",
"filesize": "^10.1.2",
"jszip": "^3.10.1",
"keycloak-connect": "^24.0.3",
"lodash": "^4.17.21"
}
}