32 lines
988 B
JSON
32 lines
988 B
JSON
{
|
|
"name": "logistics_support_tool",
|
|
"version": "1.0.0",
|
|
"description": "This is the new logisitcs support tool",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"backend": "cd backend && go run .",
|
|
"docker:front":"docker build -t logistics_support_tool:frontend-latest -f frontend/Dockerfile ./frontend",
|
|
"docker:back":"docker build -t logistics_support_tool:backend-latest -f backend/Dockerfile ./backend",
|
|
"docker": "powershell -File ./scripts/dockerBuild.ps1",
|
|
"release":"powershell -File ./scripts/release.ps1"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://git.tuffraid.net/cowch/logistics_support_tool.git"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"type": "module",
|
|
"devDependencies": {
|
|
"cz-conventional-changelog": "^3.3.0",
|
|
"standard-version": "^9.5.0"
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "./node_modules/cz-conventional-changelog"
|
|
}
|
|
}
|
|
}
|