-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.62 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
{
"name": "chemical-hazard-tool",
"version": "0.4.4-ff35c02",
"description": "GUI for evaluating the chemical hazards.",
"scripts": {
"clean": "pnpm recursive run cleanup",
"start": "pnpm recursive run dev",
"convert": "avro-typescript-converter.cmd docker/schemas/cbrn/chemical_hazard-value.avsc -o packages/shared/src/models",
"build:domain": "pnpm run build:domain",
"docker:build": "docker build -t chemical-hazard-tool .",
"docker:tag": "docker tag chemical-hazard-tool assistanceeu/chemical-hazard-tool:0.4.4-ff35c02",
"docker:tag:latest": "docker tag chemical-hazard-tool assistanceeu/chemical-hazard-tool:latest",
"docker:publish": "docker push assistanceeu/chemical-hazard-tool:0.4.4-ff35c02",
"docker:publish:latest": "docker push assistanceeu/chemical-hazard-tool:latest",
"docker:latest": "npm run docker:tag:latest && npm run docker:publish:latest",
"docker": "npm run docker:local && npm run docker:publish && npm run docker:latest",
"docker:local": "npm run docker:build && npm run docker:tag",
"docker:run": "docker run --name cht -it -p 3333:3333 chemical-hazard-tool",
"docker:sh": "docker run -it chemical-hazard-tool sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/erikvullings/chemical-hazard-tool.git"
},
"keywords": [
"SPA",
"mithril",
"chemical hazard"
],
"author": "Erik Vullings <[email protected]> (http://www.tno.nl)",
"license": "MIT",
"bugs": {
"url": "https://github.com/erikvullings/chemical-hazard-tool/issues"
},
"homepage": "https://github.com/erikvullings/chemical-hazard-tool#readme"
}