-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
67 lines (67 loc) · 2.06 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
{
"name": "@bcgsc-pori/graphkb-loader",
"main": "src/index.js",
"version": "8.0.2",
"repository": {
"type": "git",
"url": "https://github.com/bcgsc/pori_graphkb_loader.git"
},
"bugs": {
"email": "[email protected]"
},
"private": true,
"license": "GPL-3",
"dependencies": {
"@bcgsc-pori/graphkb-parser": "^1.1.1",
"@bcgsc-pori/graphkb-schema": "^3.14.3",
"ajv": "^6.10.0",
"argparse": "^2.0.1",
"csv-parse": "^4.6.5",
"fast-csv": "^4.3.6",
"html-to-text": "^5.1.1",
"http-status-codes": "^1.3.2",
"json-cycle": "^1.3.0",
"json-stable-stringify": "^1.0.1",
"jsonpath": "^1.1.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"node-expat": "^2.3.18",
"node-fetch": "^2.6.7",
"p-limit": "^3.1.0",
"parse5": "^5.1.1",
"rdflib": "^2.2.15",
"read-excel-file": "^5.2.28",
"sleep-promise": "^8.0.1",
"winston": "^3.2.1",
"xml-stream": "^0.4.5",
"xml2js": "^0.4.19"
},
"devDependencies": {
"eslint": "^8.17.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^22.20.0",
"eslint-plugin-jest-formatting": "^1.1.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-sort-keys-fix": "^1.1.1",
"fetch-mock": "^9.11.0",
"fetch-mock-jest": "^1.5.1",
"jest": "^27.3.1",
"jest-circus": "^27.3.1",
"jest-junit": "^13.0.0"
},
"scripts": {
"test": "NODE_ENV=test jest --config config/jest.config.js",
"lint": "eslint -c .eslintrc.json src test",
"version": "echo $npm_package_version",
"start": "node bin/load.js",
"start:recent-trials": "node bin/load.js clinicaltrialsgov --days 14",
"start:fda-approvals": "node bin/load.js api fdaApprovals",
"start:oncotree": "node bin/load.js api oncotree",
"start:civic": "node bin/load.js civic",
"start:signatures": "node bin/load.js file ontology data/signatures.json",
"start:vocabulary": "node bin/load.js file ontology data/vocab.json"
}
}