
* feat: move from cookie base auth to jwt auth test: mock redis * test: auth.service & auth.resolver test: auth.resolver * test: session middleware * chore: bump version fix: merge conflicts * docs: update readme & trace start script * fix: start script unbound variables [skip ci] * fix: kill watcher function [skip ci] * fix: register store token * fix: don't delete token immediately after refresh. keep it for 6 sec to account for delays
40 lines
1.3 KiB
JSON
40 lines
1.3 KiB
JSON
{
|
|
"name": "runtipi",
|
|
"version": "0.7.2",
|
|
"description": "A homeserver for everyone",
|
|
"scripts": {
|
|
"prepare": "husky install",
|
|
"commit": "git-cz",
|
|
"act:test-install": "act --container-architecture linux/amd64 -j test-install",
|
|
"act:docker": "act --container-architecture linux/amd64 --secret-file github.secrets -j build-images",
|
|
"start:dev": "./scripts/start-dev.sh",
|
|
"start:rc": "docker-compose -f docker-compose.rc.yml --env-file .env up --build",
|
|
"start:prod": "docker-compose --env-file .env up --build",
|
|
"start:pg": "docker run --name test-db -p 5433:5432 -d --rm -e POSTGRES_PASSWORD=postgres postgres",
|
|
"version": "echo $npm_package_version",
|
|
"release:rc": "./scripts/deploy/release-rc.sh"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "^17.0.3",
|
|
"@commitlint/config-conventional": "^17.0.3",
|
|
"@commitlint/cz-commitlint": "^17.0.3",
|
|
"commitizen": "^4.2.4",
|
|
"husky": "^8.0.1",
|
|
"inquirer": "8.2.4"
|
|
},
|
|
"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"
|
|
},
|
|
"homepage": "https://github.com/meienberger/runtipi#readme",
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "@commitlint/cz-commitlint"
|
|
}
|
|
}
|
|
}
|