2023-12-08 22:35:15 +01:00
|
|
|
{
|
2024-01-02 14:18:37 +01:00
|
|
|
"name": "homarr",
|
2024-12-14 18:58:46 +01:00
|
|
|
"version": "1.0.0",
|
2024-12-17 19:41:51 +01:00
|
|
|
"private": true,
|
2023-12-08 22:35:15 +01:00
|
|
|
"scripts": {
|
2024-10-24 22:45:36 +02:00
|
|
|
"build": "cross-env CI=true turbo build",
|
2023-12-08 22:35:15 +01:00
|
|
|
"clean": "git clean -xdf node_modules",
|
|
|
|
|
"clean:workspaces": "turbo clean",
|
2024-09-01 16:40:22 +03:00
|
|
|
"cli": "pnpm with-env tsx packages/cli/index.ts",
|
2024-04-29 21:46:30 +02:00
|
|
|
"db:migration:mysql:generate": "pnpm -F db migration:mysql:generate",
|
2024-05-10 23:46:01 +02:00
|
|
|
"db:migration:mysql:run": "pnpm -F db migration:mysql:run",
|
2024-09-01 16:40:22 +03:00
|
|
|
"db:migration:sqlite:generate": "pnpm -F db migration:sqlite:generate",
|
|
|
|
|
"db:migration:sqlite:run": "pnpm -F db migration:sqlite:run",
|
|
|
|
|
"db:push": "pnpm -F db push:sqlite",
|
|
|
|
|
"db:studio": "pnpm -F db studio",
|
2024-02-20 21:28:27 +01:00
|
|
|
"dev": "turbo dev --parallel",
|
2024-05-01 21:10:31 +02:00
|
|
|
"docker:dev": "docker compose -f ./development/development.docker-compose.yml up",
|
2023-12-08 22:35:15 +01:00
|
|
|
"format": "turbo format --continue -- --cache --cache-location node_modules/.cache/.prettiercache",
|
|
|
|
|
"format:fix": "turbo format --continue -- --write --cache --cache-location node_modules/.cache/.prettiercache",
|
|
|
|
|
"lint": "turbo lint --continue -- --cache --cache-location node_modules/.cache/.eslintcache",
|
|
|
|
|
"lint:fix": "turbo lint --continue -- --fix --cache --cache-location node_modules/.cache/.eslintcache",
|
|
|
|
|
"lint:ws": "pnpm dlx sherif@latest",
|
2024-11-23 17:16:44 +01:00
|
|
|
"package:new": "turbo gen init",
|
2024-12-17 19:41:51 +01:00
|
|
|
"release": "semantic-release",
|
2024-11-05 21:11:14 +01:00
|
|
|
"test": "cross-env NODE_ENV=development vitest run --exclude e2e --coverage.enabled ",
|
|
|
|
|
"test:e2e": "cross-env NODE_ENV=development vitest e2e",
|
|
|
|
|
"test:ui": "cross-env NODE_ENV=development vitest --exclude e2e --ui --coverage.enabled",
|
2024-09-01 16:40:22 +03:00
|
|
|
"typecheck": "turbo typecheck",
|
|
|
|
|
"with-env": "dotenv -e .env --"
|
2023-12-08 22:35:15 +01:00
|
|
|
},
|
2024-09-01 16:40:22 +03:00
|
|
|
"prettier": "@homarr/prettier-config",
|
2023-12-08 22:35:15 +01:00
|
|
|
"devDependencies": {
|
2024-01-02 14:18:37 +01:00
|
|
|
"@homarr/prettier-config": "workspace:^0.1.0",
|
2024-12-17 19:41:51 +01:00
|
|
|
"@semantic-release/changelog": "^6.0.3",
|
|
|
|
|
"@semantic-release/commit-analyzer": "^13.0.0",
|
|
|
|
|
"@semantic-release/git": "^10.0.1",
|
|
|
|
|
"@semantic-release/github": "^11.0.1",
|
|
|
|
|
"@semantic-release/npm": "^12.0.1",
|
2024-12-17 19:14:47 +00:00
|
|
|
"@semantic-release/release-notes-generator": "^14.0.2",
|
2024-11-27 17:42:19 +00:00
|
|
|
"@turbo/gen": "^2.3.3",
|
2024-11-26 11:25:24 +00:00
|
|
|
"@vitejs/plugin-react": "^4.3.4",
|
2024-12-02 15:12:49 +00:00
|
|
|
"@vitest/coverage-v8": "^2.1.8",
|
|
|
|
|
"@vitest/ui": "^2.1.8",
|
2024-12-17 19:41:51 +01:00
|
|
|
"conventional-changelog-conventionalcommits": "^8.0.0",
|
2024-02-04 09:47:23 +01:00
|
|
|
"cross-env": "^7.0.3",
|
2024-09-22 05:30:19 +00:00
|
|
|
"jsdom": "^25.0.1",
|
2024-12-04 10:04:13 +00:00
|
|
|
"prettier": "^3.4.2",
|
2024-12-17 19:41:51 +01:00
|
|
|
"semantic-release": "^24.2.0",
|
2024-12-04 10:13:26 +00:00
|
|
|
"testcontainers": "^10.16.0",
|
2024-11-27 17:42:19 +00:00
|
|
|
"turbo": "^2.3.3",
|
2024-11-23 19:39:20 +01:00
|
|
|
"typescript": "^5.7.2",
|
2024-12-06 19:09:46 +01:00
|
|
|
"vite-tsconfig-paths": "^5.1.4",
|
2024-12-02 15:12:49 +00:00
|
|
|
"vitest": "^2.1.8"
|
2023-12-08 22:35:15 +01:00
|
|
|
},
|
2024-12-29 08:26:48 +00:00
|
|
|
"packageManager": "pnpm@9.15.2",
|
2024-09-01 16:40:22 +03:00
|
|
|
"engines": {
|
2024-12-03 21:11:43 +00:00
|
|
|
"node": ">=22.12.0"
|
2024-12-05 17:24:23 +01:00
|
|
|
},
|
|
|
|
|
"pnpm": {
|
2024-12-17 19:41:51 +01:00
|
|
|
"allowNonAppliedPatches": true,
|
2024-12-05 17:24:23 +01:00
|
|
|
"patchedDependencies": {
|
|
|
|
|
"pretty-print-error": "patches/pretty-print-error.patch"
|
2024-12-17 19:41:51 +01:00
|
|
|
}
|
2024-08-25 18:03:32 +02:00
|
|
|
}
|
2024-11-05 21:11:14 +01:00
|
|
|
}
|