Files
zitadel/package.json

38 lines
1.2 KiB
JSON
Raw Normal View History

2023-04-03 11:45:27 +02:00
{
2024-05-24 10:40:12 -04:00
"packageManager": "pnpm@9.1.2+sha256.19c17528f9ca20bd442e4ca42f00f1b9808a9cb419383cd04ba32ef19322aba7",
2023-04-03 11:45:27 +02:00
"private": true,
"scripts": {
2023-05-25 17:11:36 +02:00
"generate": "turbo run generate",
2023-04-03 11:45:27 +02:00
"build": "turbo run build",
2023-05-25 17:11:36 +02:00
"test": "turbo run test",
2024-05-16 03:02:22 -04:00
"test:unit": "turbo run test:unit -- --passWithNoTests",
2023-06-16 01:36:19 +02:00
"test:integration": "turbo run test:integration",
2023-05-25 17:11:36 +02:00
"test:watch": "turbo run test:watch",
2023-04-03 11:45:27 +02:00
"dev": "turbo run dev --no-cache --continue",
"lint": "turbo run lint",
2023-06-16 01:36:19 +02:00
"lint:fix": "turbo run lint:fix",
2023-04-03 11:45:27 +02:00
"clean": "turbo run clean && rm -rf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"changeset": "changeset",
"version-packages": "changeset version",
2023-05-25 17:11:36 +02:00
"release": "turbo run build --filter=login^... && changeset publish"
2023-04-03 11:45:27 +02:00
},
2024-05-16 03:02:22 -04:00
"pnpm": {
"overrides": {
"@typescript-eslint/parser": "^7.9.0"
}
},
2023-04-03 11:45:27 +02:00
"devDependencies": {
"@changesets/cli": "^2.22.0",
2024-05-16 03:02:22 -04:00
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.57.0",
2023-04-03 11:45:27 +02:00
"eslint-config-zitadel": "workspace:*",
2024-05-13 16:17:12 -04:00
"prettier": "^3.2.5",
2024-05-16 03:02:22 -04:00
"tsup": "^8.0.2",
2024-05-24 10:40:12 -04:00
"turbo": "^1.13.3",
2024-05-16 03:02:22 -04:00
"typescript": "^5.4.5",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.6.0"
2024-05-24 10:40:12 -04:00
}
}