-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.37 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
{
"name": "illumination",
"version": "1.2.2",
"description": "Interacting with Illumina ICAv1 API",
"main": "app.js",
"scripts": {
"start": "node ./app.js",
"devstart": "nodemon",
"start_pro": "WORKGROUP='PRO' ICA_ACCESS_TOKEN=${ICA_ACCESS_TOKEN_PRO} PORT=3001 node ./app.js",
"start_dev": "WORKGROUP='DEV' ICA_ACCESS_TOKEN=${ICA_ACCESS_TOKEN_DEV} PORT=3002 node ./app.js",
"start_stg": "WORKGROUP='STG' ICA_ACCESS_TOKEN=${ICA_ACCESS_TOKEN_STG} PORT=3003 node ./app.js",
"build": "docker build -t victorskl/illumination:latest .",
"push": "docker push victorskl/illumination:latest",
"run": "docker run --rm -it -e ICA_ACCESS_TOKEN -p 3000:3000 victorskl/illumination"
},
"repository": {
"type": "git",
"url": "git+https://github.com/umccr/illumination.git"
},
"author": "Peter Diakumis",
"license": "MIT",
"bugs": {
"url": "https://github.com/umccr/illumination/issues"
},
"homepage": "https://github.com/umccr/illumination#readme",
"dependencies": {
"axios": "^1.7.4",
"chalk": "^4.1.1",
"dayjs": "^1.10.6",
"ejs": "^3.1.10",
"express": "^4.21.0",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"dotenv": "^16.0.0",
"dotenv-expand": "^8.0.3",
"express-list-endpoints": "^5.0.0",
"nodemon": "^3.1.7"
},
"nodemonConfig": {
"ignore": [
"nogit/*",
"docs/*"
]
}
}