2022-05-12 19:02:03 +00:00
|
|
|
{
|
|
|
|
"name": "runtipi",
|
2022-08-11 18:13:24 +00:00
|
|
|
"version": "0.5.0",
|
2022-05-12 19:02:03 +00:00
|
|
|
"description": "A homeserver for everyone",
|
2022-05-12 19:19:35 +00:00
|
|
|
"scripts": {
|
2022-05-24 16:45:16 +00:00
|
|
|
"test": "jest",
|
2022-05-16 17:55:49 +00:00
|
|
|
"prepare": "husky install",
|
2022-07-27 20:15:41 +00:00
|
|
|
"commit": "git-cz",
|
2022-05-16 21:30:08 +00:00
|
|
|
"act:test-install": "act --container-architecture linux/amd64 -j test-install",
|
2022-06-01 19:54:55 +00:00
|
|
|
"act:docker": "act --container-architecture linux/amd64 --secret-file github.secrets -j build-images",
|
2022-05-17 17:29:12 +00:00
|
|
|
"start:dev": "docker-compose -f docker-compose.dev.yml --env-file .env.dev up --build",
|
2022-05-18 16:50:53 +00:00
|
|
|
"start:rc": "docker-compose -f docker-compose.rc.yml --env-file .env up --build",
|
2022-06-10 05:05:07 +00:00
|
|
|
"start:prod": "docker-compose --env-file .env up --build",
|
2022-06-22 19:28:48 +00:00
|
|
|
"build:common": "cd packages/common && npm run build",
|
2022-07-28 17:48:25 +00:00
|
|
|
"start:pg": "docker run --name test-db -p 5433:5432 -d --rm -e POSTGRES_PASSWORD=postgres postgres",
|
2022-06-22 19:28:48 +00:00
|
|
|
"version": "echo $npm_package_version"
|
2022-05-12 19:19:35 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-05-24 16:45:16 +00:00
|
|
|
"@types/jest": "^27.5.0",
|
|
|
|
"@types/js-yaml": "^4.0.5",
|
|
|
|
"@types/node": "17.0.31",
|
|
|
|
"husky": "^8.0.1",
|
|
|
|
"jest": "^28.1.0",
|
|
|
|
"js-yaml": "^4.1.0",
|
|
|
|
"ts-jest": "^28.0.2",
|
2022-07-27 20:15:41 +00:00
|
|
|
"typescript": "4.6.4",
|
|
|
|
"@commitlint/cli": "^17.0.3",
|
|
|
|
"@commitlint/config-conventional": "^17.0.3",
|
|
|
|
"@commitlint/cz-commitlint": "^17.0.3",
|
|
|
|
"commitizen": "^4.2.4"
|
2022-05-12 19:02:03 +00:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/meienberger/runtipi.git"
|
|
|
|
},
|
|
|
|
"author": "",
|
|
|
|
"license": "GNU General Public License v3.0",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/meienberger/runtipi/issues"
|
|
|
|
},
|
2022-06-03 20:42:23 +00:00
|
|
|
"homepage": "https://github.com/meienberger/runtipi#readme",
|
2022-07-27 20:15:41 +00:00
|
|
|
"dependencies": {},
|
|
|
|
"config": {
|
|
|
|
"commitizen": {
|
|
|
|
"path": "@commitlint/cz-commitlint"
|
|
|
|
}
|
|
|
|
}
|
2022-05-12 19:02:03 +00:00
|
|
|
}
|