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",
|
2023-06-16 01:36:19 +02:00
|
|
|
"test:unit": "turbo run test:unit",
|
|
|
|
|
"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
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@changesets/cli": "^2.22.0",
|
2024-03-21 13:58:04 +01:00
|
|
|
"eslint": "^7.32.0",
|
2023-04-03 11:45:27 +02:00
|
|
|
"eslint-config-zitadel": "workspace:*",
|
|
|
|
|
"prettier": "^2.5.1",
|
2023-07-18 13:58:33 +02:00
|
|
|
"turbo": "^1.10.8"
|
2023-04-03 11:45:27 +02:00
|
|
|
},
|
|
|
|
|
"packageManager": "pnpm@7.15.0"
|
2023-05-25 17:11:36 +02:00
|
|
|
}
|