2019-12-31 12:49:12 +00:00
|
|
|
{
|
2024-03-15 15:39:50 +00:00
|
|
|
"name": "@oneuptime/root",
|
2021-03-06 12:46:51 +00:00
|
|
|
"version": "3.0.2",
|
2023-04-25 08:59:11 +00:00
|
|
|
"description": "One Complete Observability platform.",
|
2022-09-28 10:40:03 +00:00
|
|
|
"main": "ts",
|
2022-02-25 13:25:16 +00:00
|
|
|
"type": "module",
|
2022-02-07 18:19:50 +00:00
|
|
|
"dependencies": {
|
2024-07-11 06:34:52 +00:00
|
|
|
"@types/lodash": "^4.17.5",
|
2024-07-11 06:34:56 +00:00
|
|
|
"eslint-plugin-react": "^7.34.3",
|
2024-06-14 13:06:41 +00:00
|
|
|
"eslint-plugin-unused-imports": "^3.2.0",
|
2024-07-10 06:13:29 +00:00
|
|
|
"globals": "^15.6.0",
|
2024-04-25 18:15:14 +00:00
|
|
|
"jest": "^29.7.0",
|
2024-05-30 18:39:07 +00:00
|
|
|
"mailparser": "^3.7.1",
|
2023-12-30 18:30:46 +00:00
|
|
|
"ts-node": "^10.9.2",
|
2024-02-18 02:44:07 +00:00
|
|
|
"typeorm": "^0.3.20"
|
2022-02-07 18:19:50 +00:00
|
|
|
},
|
2020-02-27 10:02:58 +00:00
|
|
|
"devDependencies": {
|
2022-03-19 17:00:54 +00:00
|
|
|
"@babel/core": "^7.17.8",
|
2024-06-14 10:51:38 +00:00
|
|
|
"@eslint/js": "^9.4.0",
|
|
|
|
"@types/eslint__js": "^8.42.3",
|
2022-12-18 11:55:03 +00:00
|
|
|
"ejs-lint": "^1.2.2",
|
2024-06-14 10:51:38 +00:00
|
|
|
"eslint": "^8.57.0",
|
2024-06-14 11:07:16 +00:00
|
|
|
"eslint-config-prettier": "^9.1.0",
|
|
|
|
"eslint-plugin-prettier": "^5.1.3",
|
2022-04-25 19:17:48 +00:00
|
|
|
"husky": "^7.0.0",
|
2023-04-25 08:03:17 +00:00
|
|
|
"lint-staged": "^13.2.1",
|
2022-12-17 07:21:42 +00:00
|
|
|
"nodemon": "^2.0.20",
|
2024-06-14 11:07:16 +00:00
|
|
|
"prettier": "3.3.2",
|
2024-06-14 10:51:38 +00:00
|
|
|
"typescript": "^5.4.5",
|
|
|
|
"typescript-eslint": "^7.13.0"
|
2020-02-27 10:02:58 +00:00
|
|
|
},
|
|
|
|
"scripts": {
|
2023-11-03 15:57:05 +00:00
|
|
|
"config-to-dev": "node ./Scripts/Install/ReplaceValueInConfig.js ENVIRONMENT development",
|
|
|
|
"config-to-ci": "node ./Scripts/Install/ReplaceValueInConfig.js ENVIRONMENT ci",
|
|
|
|
"config-to-test": "node ./Scripts/Install/ReplaceValueInConfig.js ENVIRONMENT test && node ./Scripts/Install/ReplaceValueInConfig.js APP_TAG test",
|
|
|
|
"config-to-production": "node ./Scripts/Install/ReplaceValueInConfig.js ENVIRONMENT production",
|
2023-06-12 09:42:43 +00:00
|
|
|
"prerun": "bash configure.sh",
|
2022-05-19 12:59:34 +00:00
|
|
|
"typeorm": "node --require ts-node/register ./node_modules/typeorm/cli.js",
|
2022-11-08 18:22:22 +00:00
|
|
|
"uninstall": "bash uninstall.sh",
|
2024-07-15 21:23:11 +00:00
|
|
|
"lint": "export NODE_OPTIONS='--max-old-space-size=8096' && npx eslint .",
|
|
|
|
"fix-lint": "export NODE_OPTIONS='--max-old-space-size=8096' && npx eslint . --fix",
|
2021-06-15 18:11:29 +00:00
|
|
|
"fix": "npm run fix-lint",
|
2023-09-29 13:24:59 +00:00
|
|
|
"status-check": "bash ./Tests/Scripts/status-check.sh $npm_config_services",
|
|
|
|
"start": "export $(grep -v '^#' config.env | xargs) && docker compose up --remove-orphans -d $npm_config_services && npm run status-check",
|
2024-07-08 11:56:33 +00:00
|
|
|
"dev-llm": "npm run prerun && export $(grep -v '^#' config.env | xargs) && docker compose -f docker-compose.llm.yml up --remove-orphans -d $npm_config_services",
|
2024-06-28 10:33:48 +00:00
|
|
|
"start-llm": "npm run prerun && export $(grep -v '^#' config.env | xargs) && docker compose -f docker-compose.llm.yml up --remove-orphans -d $npm_config_services",
|
|
|
|
"build-llm": "npm run prerun && export $(grep -v '^#' config.env | xargs) && docker compose -f docker-compose.llm.yml build $npm_config_services",
|
|
|
|
"force-build-llm": "npm run prerun && export $(grep -v '^#' config.env | xargs) && docker compose -f docker-compose.llm.yml build --no-cache $npm_config_services",
|
2023-10-10 10:16:22 +00:00
|
|
|
"ps": "export $(grep -v '^#' config.env | xargs) && docker compose ps",
|
2023-07-19 14:13:05 +00:00
|
|
|
"save-logs": "export $(grep -v '^#' config.env | xargs) && docker compose logs --tail=100000 $npm_config_services > logs.txt",
|
|
|
|
"logs": "export $(grep -v '^#' config.env | xargs) && docker compose logs --tail=100 -f $npm_config_services",
|
|
|
|
"write-logs": "export $(grep -v '^#' config.env | xargs) && docker compose logs -f $npm_config_services > logs.txt",
|
2023-10-02 11:13:37 +00:00
|
|
|
"build": "export $(grep -v '^#' config.env | xargs) && docker compose -f docker-compose.dev.yml build $npm_config_services",
|
2023-07-21 11:09:46 +00:00
|
|
|
"force-build": "export $(grep -v '^#' config.env | xargs) && npm run prerun && docker compose -f docker-compose.dev.yml build --no-cache $npm_config_services",
|
2022-11-09 14:05:16 +00:00
|
|
|
"force-build-dev": "npm run config-to-dev && npm run force-build",
|
2022-11-08 18:22:22 +00:00
|
|
|
"kill": "npm run stop",
|
2023-07-19 11:42:33 +00:00
|
|
|
"prod": "npm run config-to-prod && export $(grep -v '^#' config.env | xargs) && docker compose up -f docker-compose.yml -d",
|
2023-07-31 09:51:17 +00:00
|
|
|
"dev": "npm run config-to-dev && npm run prerun && export $(grep -v '^#' config.env | xargs) && docker compose -f docker-compose.dev.yml up --remove-orphans -d $npm_config_services",
|
2023-09-13 06:56:20 +00:00
|
|
|
"stop": "export $(grep -v '^#' config.env | xargs) && docker compose down --remove-orphans",
|
|
|
|
"down": "npm run stop",
|
2023-10-10 12:49:48 +00:00
|
|
|
"exec": "export $(grep -v '^#' config.env | xargs) && docker compose -f docker-compose.yml exec -it",
|
2022-05-22 11:38:15 +00:00
|
|
|
"prune": "docker system prune",
|
2021-05-19 19:04:05 +00:00
|
|
|
"remove-all-containers": "docker stop $(docker ps -a -q) && docker rm $(docker ps -a -q) || echo 'No running containers'",
|
2022-12-12 09:56:01 +00:00
|
|
|
"prepare": "husky install",
|
2023-07-19 11:25:50 +00:00
|
|
|
"backup": "bash backup.sh",
|
2024-01-29 13:29:35 +00:00
|
|
|
"pull": "export $(grep -v '^#' config.env | xargs) && docker compose pull",
|
2023-12-12 13:48:44 +00:00
|
|
|
"update": "npm run prerun && export $(grep -v '^#' config.env | xargs) && docker compose pull && npm run start",
|
2024-01-29 11:59:02 +00:00
|
|
|
"dep-check": "npm install -g depcheck && depcheck ./ --skip-missing=true",
|
2024-03-19 09:32:28 +00:00
|
|
|
"run-probes": "export $(grep -v '^#' config.env | xargs) && docker compose up --remove-orphans -d probe-1 probe-2",
|
2024-03-24 12:56:31 +00:00
|
|
|
"deploy-test": "kubectl config use-context oneuptime-test && helm upgrade oneuptime ./HelmChart/Public/oneuptime -f ./HelmChart/Public/oneuptime/values.yaml -f ./HelmChart/Values/test.values.yaml",
|
2024-06-04 21:51:53 +00:00
|
|
|
"template-deploy-test": "kubectl config use-context oneuptime-test && helm template oneuptime ./HelmChart/Public/oneuptime -f ./HelmChart/Public/oneuptime/values.yaml -f ./HelmChart/Values/test.values.yaml --debug",
|
2024-06-05 16:26:48 +00:00
|
|
|
"deploy-prod": "kubectl config use-context oneuptime-prod && helm upgrade oneuptime ./HelmChart/Public/oneuptime -f ./HelmChart/Public/oneuptime/values.yaml -f ./HelmChart/Values/prod.values.yaml",
|
2024-08-07 22:14:31 +00:00
|
|
|
"generate-postgres-migration": "export $(grep -v '^#' config.env | xargs) && node --require ts-node/register ./node_modules/typeorm/cli.js migration:generate ./Common/Server/Infrastructure/Postgres/SchemaMigrations/MigrationName -d ./Common/Server/Infrastructure/Postgres/LocalMigrationGenerationDataSource.ts"
|
2020-02-27 10:02:58 +00:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2024-07-16 20:44:47 +00:00
|
|
|
"url": "git+https://github.com/oneuptime/oneuptime.git"
|
2020-02-27 10:02:58 +00:00
|
|
|
},
|
|
|
|
"keywords": [],
|
2024-03-14 13:20:47 +00:00
|
|
|
"author": "OneUptime <hello@oneuptime.com> (https://oneuptime.com/)",
|
2024-03-14 14:22:54 +00:00
|
|
|
"license": "Apache-2.0",
|
2020-02-27 10:02:58 +00:00
|
|
|
"bugs": {
|
2021-11-24 07:42:40 +00:00
|
|
|
"url": "https://gitlab.com/oneuptime/app/issues"
|
2020-02-27 10:02:58 +00:00
|
|
|
},
|
2022-03-19 17:01:37 +00:00
|
|
|
"homepage": "https://gitlab.com/oneuptime/app#readme"
|
2024-07-24 23:36:02 +00:00
|
|
|
}
|