mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-09 01:12:17 +00:00
60 lines
2.1 KiB
JSON
60 lines
2.1 KiB
JSON
{
|
|
"packageManager": "pnpm@10.0.0",
|
|
"private": true,
|
|
"name": "typescript-monorepo",
|
|
"scripts": {
|
|
"generate": "turbo run generate",
|
|
"build": "turbo run build",
|
|
"build:packages": "turbo run build --filter=./packages/*",
|
|
"build:apps": "turbo run build --filter=./apps/*",
|
|
"test": "turbo run test",
|
|
"start": "turbo run start",
|
|
"start:built": "turbo run start:built",
|
|
"test:unit": "turbo run test:unit -- --passWithNoTests",
|
|
"test:integration": "turbo run test:integration",
|
|
"test:acceptance": "pnpm exec playwright test",
|
|
"test:watch": "turbo run test:watch",
|
|
"dev": "turbo run dev --no-cache --continue",
|
|
"lint": "turbo run lint",
|
|
"lint:fix": "turbo run lint:fix",
|
|
"clean": "turbo run clean && rm -rf node_modules",
|
|
"format:fix": "prettier --write \"**/*.{ts,tsx,md}\"",
|
|
"format": "prettier --check \"**/*.{ts,tsx,md}\"",
|
|
"changeset": "changeset",
|
|
"version-packages": "changeset version",
|
|
"release": "turbo run build --filter=login^... && changeset publish",
|
|
"run-zitadel": "docker compose -f ./acceptance/docker-compose.yaml run setup",
|
|
"run-sink": "docker compose -f ./acceptance/docker-compose.yaml up -d sink",
|
|
"stop": "docker compose -f ./acceptance/docker-compose.yaml stop"
|
|
},
|
|
"pnpm": {
|
|
"overrides": {
|
|
"@typescript-eslint/parser": "^7.9.0",
|
|
"@types/react": "npm:types-react@19.0.0-rc.1",
|
|
"@types/react-dom": "npm:types-react-dom@19.0.0-rc.1"
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@otplib/core": "^12.0.0",
|
|
"@otplib/plugin-thirty-two": "^12.0.0",
|
|
"@otplib/plugin-crypto": "^12.0.0",
|
|
"@faker-js/faker": "^9.2.0",
|
|
"@changesets/cli": "^2.27.9",
|
|
"@playwright/test": "^1.48.2",
|
|
"@types/node": "^22.9.0",
|
|
"@vitejs/plugin-react": "^4.3.3",
|
|
"@zitadel/prettier-config": "workspace:*",
|
|
"axios": "^1.7.7",
|
|
"dotenv": "^16.4.5",
|
|
"eslint": "8.57.1",
|
|
"@zitadel/eslint-config": "workspace:*",
|
|
"prettier": "^3.2.5",
|
|
"prettier-plugin-organize-imports": "^4.1.0",
|
|
"tsup": "^8.3.5",
|
|
"turbo": "2.2.3",
|
|
"typescript": "^5.6.3",
|
|
"vite-tsconfig-paths": "^5.1.2",
|
|
"vitest": "^2.1.4"
|
|
}
|
|
}
|