2022-11-30 02:21:17 +05:30
|
|
|
{
|
2022-11-30 21:28:45 +05:30
|
|
|
"$schema": "https://turbo.build/schema.json",
|
2023-01-26 23:42:20 +05:30
|
|
|
"globalEnv": [
|
2023-11-20 13:29:54 +05:30
|
|
|
"NODE_ENV",
|
2025-11-12 19:03:47 +05:30
|
|
|
"VITE_API_BASE_URL",
|
|
|
|
|
"VITE_ADMIN_BASE_URL",
|
|
|
|
|
"VITE_ADMIN_BASE_PATH",
|
|
|
|
|
"VITE_SPACE_BASE_URL",
|
|
|
|
|
"VITE_SPACE_BASE_PATH",
|
|
|
|
|
"VITE_WEB_BASE_URL",
|
|
|
|
|
"VITE_LIVE_BASE_URL",
|
2025-11-13 15:24:17 +05:30
|
|
|
"VITE_LIVE_BASE_PATH",
|
2025-11-12 19:03:47 +05:30
|
|
|
"VITE_ENABLE_SESSION_RECORDER",
|
|
|
|
|
"VITE_SESSION_RECORDER_KEY",
|
|
|
|
|
"VITE_POSTHOG_KEY",
|
|
|
|
|
"VITE_POSTHOG_HOST",
|
|
|
|
|
"VITE_POSTHOG_DEBUG",
|
|
|
|
|
"VITE_SUPPORT_EMAIL",
|
2025-11-13 15:24:17 +05:30
|
|
|
"ENABLE_EXPERIMENTAL_COREPACK",
|
|
|
|
|
"VITE_SENTRY_DSN",
|
|
|
|
|
"VITE_SENTRY_ENVIRONMENT",
|
|
|
|
|
"VITE_SENTRY_SEND_DEFAULT_PII",
|
|
|
|
|
"VITE_SENTRY_TRACES_SAMPLE_RATE",
|
|
|
|
|
"VITE_SENTRY_PROFILES_SAMPLE_RATE",
|
|
|
|
|
"VITE_SENTRY_REPLAYS_SESSION_SAMPLE_RATE",
|
|
|
|
|
"VITE_SENTRY_REPLAYS_ON_ERROR_SAMPLE_RATE",
|
|
|
|
|
"VITE_APP_VERSION"
|
2023-01-26 23:42:20 +05:30
|
|
|
],
|
2025-08-19 07:36:42 -07:00
|
|
|
"globalDependencies": ["pnpm-lock.yaml", "pnpm-workspace.yaml", ".npmrc"],
|
2024-06-13 14:49:59 +05:30
|
|
|
"tasks": {
|
2022-11-30 21:28:45 +05:30
|
|
|
"build": {
|
2024-07-18 15:45:37 +05:30
|
|
|
"dependsOn": ["^build"],
|
2025-11-11 15:45:53 +05:30
|
|
|
"outputs": ["dist/**", "build/**"]
|
2023-10-13 12:05:49 +05:30
|
|
|
},
|
2025-08-26 02:14:00 +05:30
|
|
|
"build-storybook": {
|
|
|
|
|
"dependsOn": ["^build"],
|
|
|
|
|
"outputs": ["storybook-static/**"]
|
|
|
|
|
},
|
2024-01-17 17:24:56 +05:30
|
|
|
"dev": {
|
2025-07-08 13:59:54 +05:30
|
|
|
"dependsOn": ["^build"],
|
2023-10-13 12:05:49 +05:30
|
|
|
"cache": false,
|
2025-07-04 14:23:18 +05:30
|
|
|
"persistent": true
|
2023-11-20 21:31:12 +05:30
|
|
|
},
|
2025-07-04 14:23:18 +05:30
|
|
|
"check:types": {
|
2024-07-18 15:45:37 +05:30
|
|
|
"dependsOn": ["^build"],
|
2025-07-04 14:23:18 +05:30
|
|
|
"cache": false
|
2022-11-30 21:28:45 +05:30
|
|
|
},
|
2025-12-05 17:33:51 +07:00
|
|
|
"lint": {
|
|
|
|
|
"cache": false,
|
|
|
|
|
"inputs": ["**/*.{js,ts,tsx,mjs,jsx}", "!**/node_modules/**", "!**/build/**", "!**/dist/**"]
|
|
|
|
|
},
|
2025-07-04 14:23:18 +05:30
|
|
|
"check:lint": {
|
2025-12-05 17:33:51 +07:00
|
|
|
"dependsOn": ["lint"],
|
2025-08-19 07:36:42 -07:00
|
|
|
"cache": false,
|
2025-12-05 17:33:51 +07:00
|
|
|
"inputs": ["**/*.{js,ts,tsx,mjs,jsx}", "!**/build/**", "!**/dist/**"]
|
2025-07-04 14:23:18 +05:30
|
|
|
},
|
|
|
|
|
"check:format": {
|
|
|
|
|
"cache": false
|
|
|
|
|
},
|
|
|
|
|
"check": {
|
|
|
|
|
"dependsOn": ["check:format", "check:lint", "check:types"],
|
|
|
|
|
"cache": false
|
|
|
|
|
},
|
|
|
|
|
"fix:lint": {
|
|
|
|
|
"cache": false
|
|
|
|
|
},
|
|
|
|
|
"fix:format": {
|
|
|
|
|
"cache": false
|
|
|
|
|
},
|
|
|
|
|
"fix": {
|
|
|
|
|
"dependsOn": ["fix:format", "fix:lint"],
|
|
|
|
|
"cache": false
|
|
|
|
|
},
|
|
|
|
|
"test": {
|
|
|
|
|
"dependsOn": ["^build"],
|
2022-11-30 21:28:45 +05:30
|
|
|
"outputs": []
|
|
|
|
|
},
|
|
|
|
|
"start": {
|
|
|
|
|
"cache": false
|
|
|
|
|
},
|
|
|
|
|
"clean": {
|
|
|
|
|
"cache": false
|
2022-11-30 02:21:17 +05:30
|
|
|
}
|
2022-11-30 21:28:45 +05:30
|
|
|
}
|
|
|
|
|
}
|