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-04-11 21:09:19 +02:00
|
|
|
"node": ">=20.12.2"
|
2023-12-08 22:35:15 +01:00
|
|
|
},
|
2024-02-04 09:47:23 +01:00
|
|
|
"type": "module",
|
2024-04-27 14:21:46 +02:00
|
|
|
"packageManager": "pnpm@9.0.6",
|
2023-12-08 22:35:15 +01:00
|
|
|
"scripts": {
|
|
|
|
|
"build": "turbo build",
|
|
|
|
|
"clean": "git clean -xdf node_modules",
|
|
|
|
|
"clean:workspaces": "turbo clean",
|
|
|
|
|
"db:push": "pnpm -F db push",
|
|
|
|
|
"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-03-16 15:51:34 +01:00
|
|
|
"db:migration:run": "pnpm -F db migration: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-04-27 14:36:32 +02:00
|
|
|
"@turbo/gen": "^1.13.3",
|
2024-02-04 09:47:23 +01:00
|
|
|
"@vitejs/plugin-react": "^4.2.1",
|
2024-04-30 21:14:56 +02:00
|
|
|
"@vitest/coverage-v8": "^1.5.3",
|
|
|
|
|
"@vitest/ui": "^1.5.3",
|
2024-02-04 09:47:23 +01:00
|
|
|
"cross-env": "^7.0.3",
|
2024-02-10 19:00:08 +01:00
|
|
|
"jsdom": "^24.0.0",
|
2024-02-08 19:58:56 +01:00
|
|
|
"prettier": "^3.2.5",
|
2024-04-27 14:36:32 +02:00
|
|
|
"turbo": "^1.13.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-04-30 21:14:56 +02:00
|
|
|
"vitest": "^1.5.3"
|
2023-12-08 22:35:15 +01:00
|
|
|
},
|
2024-04-25 22:06:15 +02:00
|
|
|
"dependencies": {
|
2024-04-27 14:25:20 +02:00
|
|
|
"@mantine/core": "^7.8.1",
|
|
|
|
|
"@mantine/dates": "^7.8.1",
|
2024-04-30 21:55:51 +02:00
|
|
|
"@tabler/icons-react": "^3.3.0",
|
2024-04-25 22:06:15 +02:00
|
|
|
"mantine-react-table": "2.0.0-beta.1"
|
|
|
|
|
},
|
2024-02-20 21:28:27 +01:00
|
|
|
"prettier": "@homarr/prettier-config"
|
|
|
|
|
}
|