-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 3.75 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
{
"name": "savi",
"version": "0.5.0",
"description": "The Satellite Access Visualization web tool",
"main": "index.js",
"private": "true",
"scripts": {
"docker:start": "open -d Docker",
"preimage:deploy": "docker tag savi-data:0.5.0 registry.heroku.com/sat-viz/web ",
"image:deploy": "docker push registry.heroku.com/sat-viz/web",
"postimage:deploy": "heroku container:release web --app sat-viz",
"build:image": "COMPOSE_DOCKER_CLI_BUILD=1 DOCKER_BUILDKIT=1 docker-compose build base",
"build:image:data": "COMPOSE_DOCKER_CLI_BUILD=1 DOCKER_BUILDKIT=0 docker-compose build --build-arg TAG=$npm_package_version base-data",
"build:image:volume": "COMPOSE_DOCKER_CLI_BUILD=1 DOCKER_BUILDKIT=1 docker-compose build --build-arg TAG=$npm_package_version base-volume",
"build:image:huggingface": "COMPOSE_DOCKER_CLI_BUILD=1 DOCKER_BUILDKIT=0 docker-compose build huggingface",
"build:image:old": "./install.sh",
"build:data": "run-s build:data:*",
"build:data:rdata": "Rscript build/data/rdata.R",
"build:data:h5": "Rscript build/data/h5.R",
"build:data:small": "run-s build:data:small:*",
"build:data:large": "run-s build:data:large:*",
"build:data:small:rdata": "./build/data/rdata.sh small",
"build:data:large:rdata": "./build/data/rdata.sh large",
"build:data:small:h5": "./build/data/h5.sh small",
"build:data:large:h5": "./build/data/h5.sh large",
"changelog": "gren changelog --override",
"compress:image": "docker save savi | gzip > savi.$npm_package_version.tar.gz",
"lint": "run-p lint:*",
"lint:css": "echo 'eslint in the future'",
"lint:r": "Rscript -e 'lintr::lint_dir(exclusions = list.files(\"renv\", full.names = T, recursive = T, all.files = T))'",
"postinstall": "run-s renv:consent renv:init:install",
"prerenv:consent": "make",
"release": "git push --tags && gren release --tags=all",
"renv:active": "Rscript -e renv::active()",
"renv:deactive": "Rscript -e renv::deactive()",
"renv:consent": "Rscript --no-init-file -e 'renv::consent(TRUE)'",
"renv:init:install": "Rscript --no-init-file -e 'renv::init()'",
"renv:isolate": "Rscript -e 'renv::isolate()'",
"renv:restore": "Rscript -e 'renv::restore()'",
"renv:snapshot": "Rscript -e 'renv::snapshot()'",
"renv:update": "Rscript -e 'renv::update()'",
"start": "Rscript -e 'shiny::runApp(host = \"0.0.0.0\", port = 4443)'",
"start:browser": "Rscript -e 'shiny::runApp(launch.browser = T, port = 4443)'",
"start:container:data": "docker-compose up base-data",
"start:container:volume": "docker-compose up base-volume",
"start:container": "docker run -d -v \"$(pwd)/data\":/app/savi/data --publish 4443:4443 -t savi:$npm_package_version",
"start:container:bash": "docker run -v \"$(pwd)/data\":/app/savi/data --publish 4443:4443 -it savi:$npm_package_version bash",
"start:registry": "docker run -d -p 5000:5000 --name registry registry",
"style": "run-p style:*",
"style:r": "Rscript -e 'styler::style_dir()'",
"test": "echo \"Error: no test specified\" && exit 1",
"toc": "run-p toc:*",
"toc:backlog": "doctoc --title \"## Table of Contents\" BACKLOG.md",
"toc:contrib": "doctoc --title \"## Table of Contents\" CONTRIBUTING.md",
"toc:develop": "doctoc --title \"## Table of Contents\" DEVELOP.md",
"toc:readme": "doctoc --title \"## Table of Contents\" README.md",
"update": "run-s update:*",
"update:hdf5-r": "npm update hdf5-r",
"postupdate:hdf5-r": "make",
"update:rhdf5": "renv::update('rhdf5')"
},
"repository": {
"type": "git"
},
"author": "",
"license": "ISC",
"devDependencies": {
"doctoc": "^1.4.0",
"github-release-notes": "^0.17.1",
"hdf5-r": "^2.31.10-a",
"npm-run-all": "^4.1.5",
"standard": "^14.3.4"
}
}