runtipi/package.json
2024-02-04 14:46:20 +01:00

168 lines
5.9 KiB
JSON

{
"name": "runtipi",
"version": "3.0.0",
"description": "A homeserver for everyone",
"scripts": {
"clean-containers": "docker rm -f $(docker ps -a -q)",
"knip": "knip",
"test": "dotenv -e .env.test -- jest --colors",
"test:e2e": "NODE_ENV=test dotenv -e .env -e .env.e2e -- playwright test",
"test:e2e:ui": "NODE_ENV=test dotenv -e .env -e .env.e2e -- playwright test --ui",
"test:client": "jest --colors --selectProjects client --",
"test:server": "jest --colors --selectProjects server --",
"test:vite": "dotenv -e .env.test -- vitest run --coverage",
"dev": "next dev",
"dev:watcher": "pnpm -r --filter cli dev",
"db:migrate": "NODE_ENV=development dotenv -e .env.local -- tsx ./src/server/run-migrations-dev.ts",
"lint": "next lint",
"lint:fix": "next lint --fix",
"build": "next build",
"start": "NODE_ENV=production node server.js",
"start:dev-container": "./.devcontainer/filewatcher.sh && npm run start:dev",
"start:rc": "docker compose -f docker-compose.rc.yml --env-file .env up --build",
"start:dev": "docker compose -f docker-compose.dev.yml up --build",
"start:prod": "docker compose --env-file ./.env -f docker-compose.prod.yml up --build",
"start:pg": "docker run --name test-db -p 5433:5432 -d --rm -e POSTGRES_PASSWORD=postgres postgres:14",
"version": "echo $npm_package_version",
"release:rc": "./scripts/deploy/release-rc.sh",
"test:build": "docker buildx build --platform linux/amd64,linux/arm64 -t meienberger/runtipi:test .",
"test:build:arm64": "docker buildx build --platform linux/arm64 -t meienberger/runtipi:test .",
"test:build:arm7": "docker buildx build --platform linux/arm/v7 -t meienberger/runtipi:test .",
"test:build:amd64": "docker buildx build --platform linux/amd64 -t meienberger/runtipi:test .",
"tsc": "tsc"
},
"dependencies": {
"@hookform/resolvers": "^3.3.4",
"@otplib/core": "^12.0.1",
"@otplib/plugin-crypto": "^12.0.1",
"@otplib/plugin-thirty-two": "^12.0.1",
"@radix-ui/react-context-menu": "^2.1.5",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tabs": "^1.0.4",
"@runtipi/postgres-migrations": "^5.3.0",
"@runtipi/shared": "workspace:^",
"@sentry/integrations": "^7.94.1",
"@sentry/nextjs": "^7.94.1",
"@tabler/core": "1.0.0-beta20",
"@tabler/icons-react": "^2.45.0",
"argon2": "^0.31.2",
"bullmq": "^5.1.6",
"clsx": "^2.1.0",
"connect-redis": "^7.1.1",
"drizzle-orm": "^0.29.3",
"fs-extra": "^11.2.0",
"geist": "^1.2.0",
"jsonwebtoken": "^9.0.2",
"let-it-go": "^1.0.0",
"lodash.merge": "^4.6.2",
"next": "14.0.4",
"next-client-cookies": "^1.1.0",
"next-intl": "^3.4.4",
"next-safe-action": "^6.0.2",
"pg": "^8.11.3",
"qrcode.react": "^3.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.48.2",
"react-hot-toast": "^2.4.1",
"react-markdown": "^9.0.1",
"react-query": "^3.39.3",
"react-select": "^5.8.0",
"react-tooltip": "^5.26.0",
"redaxios": "^0.5.1",
"redis": "^4.6.12",
"rehype-raw": "^7.0.0",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.0",
"sass": "^1.70.0",
"semver": "^7.5.4",
"sharp": "0.32.6",
"socket.io-client": "^4.7.3",
"swr": "^2.2.4",
"tslib": "^2.6.2",
"uuid": "^9.0.1",
"validator": "^13.11.0",
"winston": "^3.11.0",
"zod": "^3.22.4",
"zustand": "^4.5.0"
},
"devDependencies": {
"@babel/core": "^7.23.6",
"@faker-js/faker": "^8.4.0",
"@playwright/test": "^1.39.0",
"@testing-library/dom": "^9.3.3",
"@testing-library/jest-dom": "^6.4.0",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.2",
"@total-typescript/shoehorn": "^0.1.1",
"@total-typescript/ts-reset": "^0.5.1",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.11",
"@types/jsonwebtoken": "^9.0.5",
"@types/lodash.merge": "^4.6.9",
"@types/node": "20.8.10",
"@types/pg": "^8.10.9",
"@types/react": "18.2.48",
"@types/react-dom": "18.2.18",
"@types/semver": "^7.5.6",
"@types/ssh2": "^1.11.18",
"@types/uuid": "^9.0.8",
"@types/validator": "^13.11.5",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.20.0",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^1.2.2",
"dotenv-cli": "^7.3.0",
"eslint": "8.55.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-next": "14.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-drizzle": "^0.2.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.6.3",
"eslint-plugin-jest-dom": "^5.1.0",
"eslint-plugin-jsonc": "^2.11.2",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^6.2.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"knip": "^3.8.2",
"memfs": "^4.6.0",
"msw": "^2.0.11",
"next-router-mock": "^0.9.10",
"prettier": "^3.2.4",
"ssh2": "^1.15.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"tsx": "^4.6.2",
"typescript": "5.2.2",
"vite-tsconfig-paths": "^4.3.1",
"vitest": "^1.2.1",
"wait-for-expect": "^3.0.2"
},
"msw": {
"workerDirectory": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/runtipi/runtipi.git"
},
"author": "",
"license": "GNU General Public License v3.0",
"bugs": {
"url": "https://github.com/runtipi/runtipi/issues"
},
"homepage": "https://github.com/runtipi/runtipi#readme",
"pnpm": {
"patchedDependencies": {}
}
}