2024-04-04 18:31:40 +02:00
|
|
|
{
|
|
|
|
|
"name": "@homarr/tasks",
|
|
|
|
|
"version": "0.1.0",
|
|
|
|
|
"private": true,
|
|
|
|
|
"exports": {
|
|
|
|
|
".": "./src/index.ts"
|
|
|
|
|
},
|
|
|
|
|
"main": "./src/main.ts",
|
|
|
|
|
"types": "./src/main.ts",
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"type": "module",
|
|
|
|
|
"scripts": {
|
|
|
|
|
"dev": "pnpm with-env tsx ./src/main.ts",
|
2024-04-07 11:32:29 +02:00
|
|
|
"build": "esbuild src/main.ts --bundle --platform=node --outfile=tasks.cjs",
|
2024-04-04 18:31:40 +02:00
|
|
|
"clean": "rm -rf .turbo node_modules",
|
2024-06-08 20:49:57 +02:00
|
|
|
"lint": "eslint",
|
2024-04-04 18:31:40 +02:00
|
|
|
"format": "prettier --check . --ignore-path ../../.gitignore",
|
|
|
|
|
"typecheck": "tsc --noEmit",
|
|
|
|
|
"with-env": "dotenv -e ../../.env --"
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
|
|
|
|
"@homarr/common": "workspace:^0.1.0",
|
|
|
|
|
"@homarr/db": "workspace:^0.1.0",
|
|
|
|
|
"@homarr/definitions": "workspace:^0.1.0",
|
2024-05-19 22:29:15 +02:00
|
|
|
"@homarr/icons": "workspace:^0.1.0",
|
2024-04-04 18:31:40 +02:00
|
|
|
"@homarr/log": "workspace:^",
|
2024-06-08 17:33:16 +02:00
|
|
|
"@homarr/ping": "workspace:^0.1.0",
|
2024-04-07 11:32:29 +02:00
|
|
|
"@homarr/redis": "workspace:^0.1.0",
|
2024-05-19 22:29:15 +02:00
|
|
|
"@homarr/server-settings": "workspace:^0.1.0",
|
2024-06-10 21:16:39 +02:00
|
|
|
"@homarr/integrations": "workspace:^0.1.0",
|
|
|
|
|
"@homarr/widgets": "workspace:^0.1.0",
|
2024-04-07 11:32:29 +02:00
|
|
|
"@homarr/validation": "workspace:^0.1.0",
|
2024-05-26 17:18:25 +02:00
|
|
|
"@homarr/analytics": "workspace:^0.1.0",
|
2024-04-04 18:31:40 +02:00
|
|
|
"dotenv": "^16.4.5",
|
2024-05-04 23:00:15 +02:00
|
|
|
"node-cron": "^3.0.3",
|
2024-05-19 22:29:15 +02:00
|
|
|
"superjson": "2.2.1"
|
2024-04-04 18:31:40 +02:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@homarr/eslint-config": "workspace:^0.2.0",
|
|
|
|
|
"@homarr/prettier-config": "workspace:^0.1.0",
|
|
|
|
|
"@homarr/tsconfig": "workspace:^0.1.0",
|
|
|
|
|
"@types/node-cron": "^3.0.11",
|
2024-06-06 17:27:56 +00:00
|
|
|
"@types/node": "^20.14.2",
|
2024-05-07 16:16:07 +02:00
|
|
|
"dotenv-cli": "^7.4.2",
|
2024-06-14 19:48:24 +00:00
|
|
|
"eslint": "^9.5.0",
|
2024-06-11 06:32:24 +00:00
|
|
|
"prettier": "^3.3.2",
|
2024-06-08 21:28:28 +02:00
|
|
|
"tsx": "4.13.3",
|
2024-04-11 20:56:02 +02:00
|
|
|
"typescript": "^5.4.5"
|
2024-04-04 18:31:40 +02:00
|
|
|
},
|
|
|
|
|
"prettier": "@homarr/prettier-config"
|
|
|
|
|
}
|