2023-12-08 22:35:15 +01:00
|
|
|
{
|
2024-01-02 14:18:37 +01:00
|
|
|
"name": "homarr",
|
2023-12-08 22:35:15 +01:00
|
|
|
"private": true,
|
|
|
|
|
"engines": {
|
2024-05-28 21:40:23 +02:00
|
|
|
"node": ">=20.14.0"
|
2023-12-08 22:35:15 +01:00
|
|
|
},
|
2024-06-06 18:39:58 +00:00
|
|
|
"packageManager": "pnpm@9.2.0",
|
2023-12-08 22:35:15 +01:00
|
|
|
"scripts": {
|
|
|
|
|
"build": "turbo build",
|
|
|
|
|
"clean": "git clean -xdf node_modules",
|
|
|
|
|
"clean:workspaces": "turbo clean",
|
2024-05-15 21:14:27 +02:00
|
|
|
"db:push": "pnpm -F db push:sqlite",
|
2023-12-08 22:35:15 +01:00
|
|
|
"db:studio": "pnpm -F db studio",
|
2024-04-29 21:46:30 +02:00
|
|
|
"db:migration:sqlite:generate": "pnpm -F db migration:sqlite:generate",
|
|
|
|
|
"db:migration:mysql:generate": "pnpm -F db migration:mysql:generate",
|
2024-05-10 23:46:01 +02:00
|
|
|
"db:migration:sqlite:run": "pnpm -F db migration:sqlite:run",
|
|
|
|
|
"db:migration:mysql:run": "pnpm -F db migration:mysql:run",
|
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-02-04 09:47:23 +01:00
|
|
|
"test": "cross-env NODE_ENV=development vitest run --coverage.enabled",
|
|
|
|
|
"test:ui": "cross-env NODE_ENV=development vitest --ui --coverage.enabled",
|
2023-12-08 22:35:15 +01:00
|
|
|
"typecheck": "turbo typecheck"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2024-01-02 14:18:37 +01:00
|
|
|
"@homarr/prettier-config": "workspace:^0.1.0",
|
2024-06-08 17:28:15 +02:00
|
|
|
"@turbo/gen": "^2.0.3",
|
2024-05-27 18:12:06 +00:00
|
|
|
"@vitejs/plugin-react": "^4.3.0",
|
2024-05-03 17:31:16 +02:00
|
|
|
"@vitest/coverage-v8": "^1.6.0",
|
|
|
|
|
"@vitest/ui": "^1.6.0",
|
2024-02-04 09:47:23 +01:00
|
|
|
"cross-env": "^7.0.3",
|
2024-05-27 21:52:27 +02:00
|
|
|
"jsdom": "^24.1.0",
|
2024-06-06 18:12:17 +00:00
|
|
|
"prettier": "^3.3.1",
|
2024-06-08 17:28:15 +02:00
|
|
|
"turbo": "^2.0.3",
|
2024-04-11 20:56:02 +02:00
|
|
|
"typescript": "^5.4.5",
|
2024-03-14 18:55:27 +01:00
|
|
|
"vite-tsconfig-paths": "^4.3.2",
|
2024-05-03 17:31:16 +02:00
|
|
|
"vitest": "^1.6.0"
|
2023-12-08 22:35:15 +01:00
|
|
|
},
|
2024-04-25 22:06:15 +02:00
|
|
|
"dependencies": {
|
2024-05-30 10:29:27 +00:00
|
|
|
"@mantine/core": "^7.10.1",
|
|
|
|
|
"@mantine/dates": "^7.10.1",
|
2024-05-23 17:53:51 +02:00
|
|
|
"@tabler/icons-react": "^3.5.0",
|
2024-05-31 20:24:11 +00:00
|
|
|
"mantine-react-table": "2.0.0-beta.4"
|
2024-04-25 22:06:15 +02:00
|
|
|
},
|
2024-02-20 21:28:27 +01:00
|
|
|
"prettier": "@homarr/prettier-config"
|
|
|
|
|
}
|