-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
50 lines (50 loc) · 1.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
{
"main": "index.js",
"name": "pharos-predictions-test-api",
"version": "1.0.5",
"description": "A test API to be used to develop endpoints for incorporating data into Pharos",
"scripts": {
"compile": "tsc && npx ts-node app.ts",
"dev": "nodemon -e ts --exec \"npm run compile\"",
"prepare": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"deploy-interactorScores": "gcloud functions deploy interactorScores --project=ncatsidg --region=us-east4 --runtime=nodejs18 --entry-point=interactorScores --trigger-http",
"deploy-coexpressionData": "gcloud functions deploy coexpressionData --project=ncatsidg --region=us-east4 --runtime=nodejs18 --entry-point=coexpressionData --trigger-http",
"deploy-predictions": "gcloud functions deploy predictions --project=ncatsidg --region=us-east4 --runtime=nodejs18 --entry-point=predictions --trigger-http",
"deploy-sample": "gcloud functions deploy sample --project=ncatsidg --region=us-east4 --runtime=nodejs18 --entry-point=sample --trigger-http",
"deploy-ping": "gcloud functions deploy ping --project=ncatsidg --region=us-east4 --runtime=nodejs18 --entry-point=ping --trigger-http"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KeithKelleher/pharos-predictions-test-api.git"
},
"keywords": [
"Pharos",
"TCRD",
"IDG",
"druggable",
"genome"
],
"author": "Keith Kelleher",
"license": "MIT",
"bugs": {
"url": "https://github.com/KeithKelleher/pharos-predictions-test-api/issues"
},
"homepage": "https://github.com/KeithKelleher/pharos-predictions-test-api#readme",
"dependencies": {
"@types/express": "^4.17.14",
"@types/node": "^18.11.9",
"csv": "^6.0.5",
"csv-parse": "^5.3.3",
"csv-parser": "^3.0.0",
"express": "^4.18.2",
"fast-xml-parser": "^4.2.5",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"typescript-require": "^0.3.0",
"axios": "^0.21.1"
},
"devDependencies": {
"nodemon": "^2.0.20"
}
}