-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 2.98 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": "donor-submission-aggregator",
"version": "1.35.0",
"description": "Donor aggregation service for the ICGC-ARGO Submission System",
"main": "src",
"scripts": {
"build": "rm -rf dist && tsc && cp -r src/assets dist",
"start": "npm run build && npm run start::prod",
"start::prod": "cd dist && NODE_PATH=. node index.js",
"start::dev": "ts-node-dev -T -r tsconfig-paths/register --respawn src/index.ts",
"start::debug": "ts-node-dev --inspect=4321 -r tsconfig-paths/register --respawn --transpileOnly src/index.ts",
"test": "npm run build && NODE_PATH=./dist nyc -- mocha --timeout 240000 dist/**/*.test.js && npm run cover",
"cover": "nyc report --reporter=lcov --reporter=text"
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/*.d.ts",
"**/*.js",
"**/*.test.ts",
"scripts/**"
],
"reporter": [
"html"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/icgc-argo/donor-submission-aggregator.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/icgc-argo/donor-submission-aggregator/issues"
},
"homepage": "https://github.com/icgc-argo/donor-submission-aggregator#readme",
"devDependencies": {
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/typescript": "^4.0.6",
"@graphql-codegen/typescript-resolvers": "^4.0.6",
"@types/chai": "^4.2.8",
"@types/dockerode": "^2.5.22",
"@types/express": "^4.17.2",
"@types/jsonwebtoken": "^9.0.6",
"@types/lodash": "^4.14.149",
"@types/mocha": "^7.0.1",
"@types/node": "^13.7.0",
"@types/node-fetch": "^2.5.5",
"@types/promise-retry": "^1.1.3",
"@types/request": "^2.48.4",
"@types/swagger-ui-express": "^4.1.1",
"@types/url-join": "^4.0.0",
"@types/uuid": "^3.4.7",
"@types/yamljs": "^0.2.30",
"chai": "^4.2.0",
"cliui": "^7.0.1",
"coveralls": "^3.0.9",
"mocha": "^7.2.0",
"node-duration": "^1.0.4",
"node-fetch": "^2.6.1",
"nyc": "^15.0.0",
"prettier": "^2.1.2",
"prettier-plugin-organize-imports": "^3.2.4",
"source-map-support": "^0.5.16",
"testcontainers": "^2.20.0",
"ts-mocha": "^6.0.0",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.9.3",
"uuid": "^3.4.0",
"yargs": "^16.0.3"
},
"dependencies": {
"@apollo/server": "^4.10.4",
"@apollo/subgraph": "^2.5.2",
"@elastic/elasticsearch": "^7.5.0",
"@graphql-tools/utils": "^10.1.2",
"@icgc-argo/ego-token-utils": "^8.5.0",
"apollo-server-express": "^3.13.0",
"date-fns": "^3.6.0",
"dotenv": "^8.2.0",
"elastic-builder": "^2.7.1",
"express": "^4.17.1",
"graphql": "^16.8.1",
"graphql-tag": "^2.12.6",
"graphql-tools": "^9.0.1",
"husky": "^4.3.0",
"jsonwebtoken": "^9.0.2",
"kafkajs": "^2.2.3",
"lodash": "^4.17.21",
"node-vault": "^0.9.13",
"path": "^0.12.7",
"pretty-quick": "^3.0.2",
"promise-retry": "^1.1.1",
"swagger-ui-express": "^4.1.3",
"ts-hashcode": "^1.0.2",
"url-join": "^4.0.1",
"winston": "^3.2.1",
"yamljs": "^0.3.0",
"zod": "^3.19.1"
}
}