Upgrades turbo to 1.8.3 (#7809)
parent
8d27dcdea3
commit
650ecc7a85
|
@ -93,7 +93,7 @@
|
|||
"dependencies": {
|
||||
"city-timezones": "^1.2.1",
|
||||
"eslint": "^8.34.0",
|
||||
"turbo": "^1.4.3"
|
||||
"turbo": "^1.8.3"
|
||||
},
|
||||
"resolutions": {
|
||||
"@apidevtools/json-schema-ref-parser": "9.0.9",
|
||||
|
|
458
turbo.json
458
turbo.json
|
@ -3,149 +3,219 @@
|
|||
"pipeline": {
|
||||
"@calcom/prisma#build": {
|
||||
"cache": false,
|
||||
"dependsOn": ["post-install"],
|
||||
"outputs": []
|
||||
"dependsOn": [
|
||||
"post-install"
|
||||
]
|
||||
},
|
||||
"@calcom/prisma#db-migrate": {
|
||||
"cache": false,
|
||||
"dependsOn": ["@calcom/prisma#db-up"],
|
||||
"inputs": ["./schema.prisma", "./migrations/**/*.sql"],
|
||||
"outputs": []
|
||||
"dependsOn": [
|
||||
"@calcom/prisma#db-up"
|
||||
],
|
||||
"inputs": [
|
||||
"./schema.prisma",
|
||||
"./migrations/**/*.sql"
|
||||
]
|
||||
},
|
||||
"@calcom/prisma#db-seed": {
|
||||
"cache": false,
|
||||
"dependsOn": ["@calcom/prisma#db-migrate"],
|
||||
"outputs": []
|
||||
"dependsOn": [
|
||||
"@calcom/prisma#db-migrate"
|
||||
]
|
||||
},
|
||||
"@calcom/prisma#db-up": {
|
||||
"cache": false,
|
||||
"outputs": []
|
||||
"cache": false
|
||||
},
|
||||
"@calcom/prisma#dx": {
|
||||
"cache": false,
|
||||
"dependsOn": ["@calcom/prisma#db-migrate"],
|
||||
"outputs": []
|
||||
"dependsOn": [
|
||||
"@calcom/prisma#db-migrate"
|
||||
]
|
||||
},
|
||||
"@calcom/web#build": {
|
||||
"dependsOn": [
|
||||
"^build",
|
||||
"$NEXT_PUBLIC_IS_E2E",
|
||||
"$NEXT_PUBLIC_STRIPE_PREMIUM_PLAN_PRICE_MONTHLY",
|
||||
"$NEXT_PUBLIC_STRIPE_PREMIUM_PLAN_PRODUCT_ID",
|
||||
"$NEXT_PUBLIC_STRIPE_TEAM_MONTHLY_PRICE_ID",
|
||||
"$STRIPE_PREMIUM_PLAN_PRODUCT_ID",
|
||||
"$STRIPE_TEAM_MONTHLY_PRICE_ID",
|
||||
"$NEXT_PUBLIC_STRIPE_PUBLIC_KEY",
|
||||
"$NEXT_PUBLIC_WEBAPP_URL",
|
||||
"$NEXT_PUBLIC_WEBSITE_URL"
|
||||
"^build"
|
||||
],
|
||||
"outputs": [".next/**"]
|
||||
"outputs": [
|
||||
".next/**"
|
||||
],
|
||||
"env": [
|
||||
"NEXT_PUBLIC_IS_E2E",
|
||||
"NEXT_PUBLIC_STRIPE_PREMIUM_PLAN_PRICE_MONTHLY",
|
||||
"NEXT_PUBLIC_STRIPE_PREMIUM_PLAN_PRODUCT_ID",
|
||||
"NEXT_PUBLIC_STRIPE_PUBLIC_KEY",
|
||||
"NEXT_PUBLIC_STRIPE_TEAM_MONTHLY_PRICE_ID",
|
||||
"NEXT_PUBLIC_WEBAPP_URL",
|
||||
"NEXT_PUBLIC_WEBSITE_URL",
|
||||
"STRIPE_PREMIUM_PLAN_PRODUCT_ID",
|
||||
"STRIPE_TEAM_MONTHLY_PRICE_ID"
|
||||
]
|
||||
},
|
||||
"@calcom/web#dx": {
|
||||
"cache": false,
|
||||
"dependsOn": ["@calcom/prisma#dx"],
|
||||
"outputs": []
|
||||
"dependsOn": [
|
||||
"@calcom/prisma#dx"
|
||||
]
|
||||
},
|
||||
"@calcom/web#start": {
|
||||
"cache": false,
|
||||
"dependsOn": [],
|
||||
"outputs": []
|
||||
"dependsOn": []
|
||||
},
|
||||
"@calcom/website#build": {
|
||||
"dependsOn": [
|
||||
"^build",
|
||||
"$NEXT_PUBLIC_STRIPE_FREE_PLAN_PRICE",
|
||||
"$NEXT_PUBLIC_STRIPE_PREMIUM_PLAN_PRICE",
|
||||
"$NEXT_PUBLIC_STRIPE_PREMIUM_NEW_PLAN_PRICE",
|
||||
"$NEXT_PUBLIC_STRIPE_PRO_PLAN_PRICE",
|
||||
"$NEXT_PUBLIC_IS_PREMIUM_NEW_PLAN",
|
||||
"$STRIPE_PRO_PLAN_PRODUCT_ID",
|
||||
"$STRIPE_PREMIUM_PLAN_PRODUCT_ID",
|
||||
"$STRIPE_FREE_PLAN_PRODUCT_ID",
|
||||
"$NEXT_PUBLIC_STRIPE_PUBLIC_KEY",
|
||||
"$NEXT_PUBLIC_WEBAPP_URL",
|
||||
"$NEXT_PUBLIC_WEBSITE_URL",
|
||||
"$SENDGRID_VERIFICATION_KEY",
|
||||
"$DATOCMS_GRAPHQL_ENDPOINT",
|
||||
"$DATOCMS_API_TOKEN",
|
||||
"$STRIPE_SUPPORT_TABLE",
|
||||
"$ENVIRONMENT_URL",
|
||||
"$CSP_POLICY"
|
||||
"^build"
|
||||
],
|
||||
"outputs": [".next/**"]
|
||||
"outputs": [
|
||||
".next/**"
|
||||
],
|
||||
"env": [
|
||||
"CSP_POLICY",
|
||||
"DATOCMS_API_TOKEN",
|
||||
"DATOCMS_GRAPHQL_ENDPOINT",
|
||||
"ENVIRONMENT_URL",
|
||||
"NEXT_PUBLIC_IS_PREMIUM_NEW_PLAN",
|
||||
"NEXT_PUBLIC_STRIPE_FREE_PLAN_PRICE",
|
||||
"NEXT_PUBLIC_STRIPE_PREMIUM_NEW_PLAN_PRICE",
|
||||
"NEXT_PUBLIC_STRIPE_PREMIUM_PLAN_PRICE",
|
||||
"NEXT_PUBLIC_STRIPE_PRO_PLAN_PRICE",
|
||||
"NEXT_PUBLIC_STRIPE_PUBLIC_KEY",
|
||||
"NEXT_PUBLIC_WEBAPP_URL",
|
||||
"NEXT_PUBLIC_WEBSITE_URL",
|
||||
"SENDGRID_VERIFICATION_KEY",
|
||||
"STRIPE_FREE_PLAN_PRODUCT_ID",
|
||||
"STRIPE_PREMIUM_PLAN_PRODUCT_ID",
|
||||
"STRIPE_PRO_PLAN_PRODUCT_ID",
|
||||
"STRIPE_SUPPORT_TABLE"
|
||||
]
|
||||
},
|
||||
"build": {
|
||||
"dependsOn": ["^build"],
|
||||
"outputs": ["dist/**", ".next/**"]
|
||||
"dependsOn": [
|
||||
"^build"
|
||||
],
|
||||
"outputs": [
|
||||
"dist/**",
|
||||
".next/**"
|
||||
]
|
||||
},
|
||||
"db-deploy": {
|
||||
"cache": false,
|
||||
"inputs": ["./migrations/**/*.sql", "./prisma/migrations/**/*.sql"],
|
||||
"outputs": []
|
||||
"inputs": [
|
||||
"./migrations/**/*.sql",
|
||||
"./prisma/migrations/**/*.sql"
|
||||
]
|
||||
},
|
||||
"db-seed": { "outputs": [] },
|
||||
"db-seed": {},
|
||||
"deploy": {
|
||||
"cache": false,
|
||||
"dependsOn": ["@calcom/web#build"],
|
||||
"outputs": []
|
||||
"dependsOn": [
|
||||
"@calcom/web#build"
|
||||
]
|
||||
},
|
||||
"clean": {
|
||||
"cache": false
|
||||
"cache": false,
|
||||
"outputs": [
|
||||
"dist/**",
|
||||
"build/**"
|
||||
]
|
||||
},
|
||||
"dev": {
|
||||
"dependsOn": ["//#env-check:common", "//#env-check:app-store"],
|
||||
"outputs": [],
|
||||
"dependsOn": [
|
||||
"//#env-check:common",
|
||||
"//#env-check:app-store"
|
||||
],
|
||||
"cache": false
|
||||
},
|
||||
"dx": {
|
||||
"cache": false,
|
||||
"outputs": []
|
||||
"cache": false
|
||||
},
|
||||
"lint": {
|
||||
"cache": false,
|
||||
"outputs": []
|
||||
"cache": false
|
||||
},
|
||||
"lint:fix": {
|
||||
"cache": false,
|
||||
"outputs": []
|
||||
"cache": false
|
||||
},
|
||||
"lint:report": {
|
||||
"cache": false,
|
||||
"outputs": ["lint-results"]
|
||||
"outputs": [
|
||||
"lint-results"
|
||||
]
|
||||
},
|
||||
"post-install": {
|
||||
"dependsOn": ["$PRISMA_GENERATE_DATAPROXY"],
|
||||
"outputs": ["../../node_modules/@prisma/client/**", "../../node_modules/@prisma/admin-client/**"],
|
||||
"inputs": ["./schema.prisma", "./prisma/schema.prisma"]
|
||||
"dependsOn": [],
|
||||
"outputs": [
|
||||
"../../node_modules/@prisma/client/**",
|
||||
"../../node_modules/@prisma/admin-client/**"
|
||||
],
|
||||
"inputs": [
|
||||
"./schema.prisma",
|
||||
"./prisma/schema.prisma"
|
||||
],
|
||||
"env": [
|
||||
"PRISMA_GENERATE_DATAPROXY"
|
||||
]
|
||||
},
|
||||
"@calcom/prisma#post-install": {
|
||||
"cache": false
|
||||
"cache": false,
|
||||
"outputs": [
|
||||
"dist/**",
|
||||
"build/**"
|
||||
]
|
||||
},
|
||||
"start": {
|
||||
"outputs": [
|
||||
"dist/**",
|
||||
"build/**"
|
||||
]
|
||||
},
|
||||
"start": {},
|
||||
"embed-tests": {
|
||||
"cache": false
|
||||
"cache": false,
|
||||
"outputs": [
|
||||
"dist/**",
|
||||
"build/**"
|
||||
]
|
||||
},
|
||||
"embed-tests-quick": {
|
||||
"cache": false
|
||||
"cache": false,
|
||||
"outputs": [
|
||||
"dist/**",
|
||||
"build/**"
|
||||
]
|
||||
},
|
||||
"type-check": {
|
||||
"cache": false,
|
||||
"outputs": []
|
||||
"cache": false
|
||||
},
|
||||
"@calcom/prisma#db-reset": {
|
||||
"cache": false
|
||||
"cache": false,
|
||||
"outputs": [
|
||||
"dist/**",
|
||||
"build/**"
|
||||
]
|
||||
},
|
||||
"@calcom/app-store-cli#build": {
|
||||
"cache": false,
|
||||
"inputs": ["../../app-store/**/**"],
|
||||
"outputs": ["../../app-store/apps.server.generated.ts", "../../app-store/apps.browser.generated.tsx"]
|
||||
"inputs": [
|
||||
"../../app-store/**/**"
|
||||
],
|
||||
"outputs": [
|
||||
"../../app-store/apps.server.generated.ts",
|
||||
"../../app-store/apps.browser.generated.tsx"
|
||||
]
|
||||
},
|
||||
"@calcom/embed-react#type-check": {
|
||||
"dependsOn": ["@calcom/embed-core#build", "@calcom/embed-snippet#build"]
|
||||
"dependsOn": [
|
||||
"@calcom/embed-core#build",
|
||||
"@calcom/embed-snippet#build"
|
||||
],
|
||||
"outputs": [
|
||||
"dist/**",
|
||||
"build/**"
|
||||
]
|
||||
},
|
||||
"@calcom/embed-core#build": {
|
||||
"cache": false,
|
||||
"outputs": ["../../../apps/web/public/embed/**"]
|
||||
"outputs": [
|
||||
"../../../apps/web/public/embed/**"
|
||||
]
|
||||
},
|
||||
"embed-tests-update-snapshots:ci": {
|
||||
"cache": false,
|
||||
|
@ -154,129 +224,143 @@
|
|||
"@calcom/web#build",
|
||||
"^build",
|
||||
"^embed-tests-update-snapshots:ci"
|
||||
],
|
||||
"outputs": [
|
||||
"dist/**",
|
||||
"build/**"
|
||||
]
|
||||
},
|
||||
"//#env-check:common": {
|
||||
"cache": false,
|
||||
"inputs": ["./.env.example", "./.env"],
|
||||
"outputs": ["./.env"]
|
||||
"inputs": [
|
||||
"./.env.example",
|
||||
"./.env"
|
||||
],
|
||||
"outputs": [
|
||||
"./.env"
|
||||
]
|
||||
},
|
||||
"//#env-check:app-store": {
|
||||
"cache": false,
|
||||
"inputs": ["./.env.appStore.example", "./.env.appStore"],
|
||||
"outputs": ["./.env.appStore"]
|
||||
"inputs": [
|
||||
"./.env.appStore.example",
|
||||
"./.env.appStore"
|
||||
],
|
||||
"outputs": [
|
||||
"./.env.appStore"
|
||||
]
|
||||
},
|
||||
"//#test": {
|
||||
"cache": false,
|
||||
"outputs": []
|
||||
"cache": false
|
||||
}
|
||||
},
|
||||
"globalDependencies": [
|
||||
"$ANALYZE",
|
||||
"$API_KEY_PREFIX",
|
||||
"$NEXT_PUBLIC_API_URL",
|
||||
"$APP_USER_NAME",
|
||||
"$CALCOM_LICENSE_KEY",
|
||||
"$CALCOM_TELEMETRY_DISABLED",
|
||||
"$CALENDSO_ENCRYPTION_KEY",
|
||||
"$SEND_FEEDBACK_EMAIL",
|
||||
"$CI",
|
||||
"$CLOSECOM_API_KEY",
|
||||
"$SENDGRID_API_KEY",
|
||||
"$SENDGRID_SYNC_API_KEY",
|
||||
"$SENDGRID_EMAIL",
|
||||
"$TWILIO_TOKEN",
|
||||
"$TWILIO_SID",
|
||||
"$TWILIO_MESSAGING_SID",
|
||||
"$TWILIO_PHONE_NUMBER",
|
||||
"$TWILIO_VERIFY_SID",
|
||||
"$CRON_API_KEY",
|
||||
"$DAILY_API_KEY",
|
||||
"$DAILY_SCALE_PLAN",
|
||||
"$DEBUG",
|
||||
"$EMAIL_FROM",
|
||||
"$EMAIL_SERVER_HOST",
|
||||
"$EMAIL_SERVER_PASSWORD",
|
||||
"$EMAIL_SERVER_PORT",
|
||||
"$EMAIL_SERVER_USER",
|
||||
"$EMAIL_SERVER",
|
||||
"$EXCHANGE_DEFAULT_EWS_URL",
|
||||
"$GIPHY_API_KEY",
|
||||
"$GOOGLE_API_CREDENTIALS",
|
||||
"$GOOGLE_LOGIN_ENABLED",
|
||||
"$MS_GRAPH_CLIENT_ID",
|
||||
"$MS_GRAPH_CLIENT_SECRET",
|
||||
"$LARK_OPEN_APP_ID",
|
||||
"$LARK_OPEN_APP_SECRET",
|
||||
"$LARK_OPEN_VERIFICATION_TOKEN",
|
||||
"$TANDEM_CLIENT_ID",
|
||||
"$TANDEM_CLIENT_SECRET",
|
||||
"$TANDEM_BASE_URL",
|
||||
"$ZOOM_CLIENT_ID",
|
||||
"$ZOOM_CLIENT_SECRET",
|
||||
"$HEROKU_APP_NAME",
|
||||
"$RENDER_EXTERNAL_URL",
|
||||
"$NEXT_PUBLIC_HOSTED_CAL_FEATURES",
|
||||
"$HUBSPOT_CLIENT_ID",
|
||||
"$HUBSPOT_CLIENT_SECRET",
|
||||
"$INTEGRATION_TEST_MODE",
|
||||
"$IP_BANLIST",
|
||||
"$NEXT_PUBLIC_CONSOLE_URL",
|
||||
"$NEXT_PUBLIC_DEBUG",
|
||||
"$NEXT_PUBLIC_EMBED_LIB_URL",
|
||||
"$NEXT_PUBLIC_SWAGGER_DOCS_URL",
|
||||
"$NEXT_PUBLIC_TEAM_IMPERSONATION",
|
||||
"$NEXT_PUBLIC_APP_NAME",
|
||||
"$NEXT_PUBLIC_SUPPORT_MAIL_ADDRESS",
|
||||
"$NEXT_PUBLIC_COMPANY_NAME",
|
||||
"$NEXT_PUBLIC_SENDER_ID",
|
||||
"$NEXT_PUBLIC_SENDGRID_SENDER_NAME",
|
||||
"$NEXT_PUBLIC_DISABLE_SIGNUP",
|
||||
"$NEXT_PUBLIC_STRIPE_PRICING_TABLE_ID",
|
||||
"$NEXT_PUBLIC_STRIPE_PRICING_TABLE_PUBLISHABLE_KEY",
|
||||
"$NEXTAUTH_COOKIE_DOMAIN",
|
||||
"$NEXTAUTH_SECRET",
|
||||
"$NEXTAUTH_URL",
|
||||
"$NODE_ENV",
|
||||
"$BUILD_ID",
|
||||
"$PLAYWRIGHT_HEADLESS",
|
||||
"$PLAYWRIGHT_TEST_BASE_URL",
|
||||
"$PRISMA_FIELD_ENCRYPTION_KEY",
|
||||
"$PRISMA_GENERATE_DATAPROXY",
|
||||
"$QUICK",
|
||||
"$RAILWAY_STATIC_URL",
|
||||
"$SALESFORCE_CONSUMER_KEY",
|
||||
"$SALESFORCE_CONSUMER_SECRET",
|
||||
"$ZOHOCRM_CLIENT_ID",
|
||||
"$ZOHOCRM_CLIENT_SECRET",
|
||||
"$SAML_ADMINS",
|
||||
"$SAML_DATABASE_URL",
|
||||
"$SAML_CLIENT_SECRET_VERIFIER",
|
||||
"$SEND_FEEDBACK_EMAIL",
|
||||
"$SENTRY_DSN",
|
||||
"$NEXT_PUBLIC_SENTRY_DSN",
|
||||
"$SLACK_CLIENT_ID",
|
||||
"$SLACK_CLIENT_SECRET",
|
||||
"$SLACK_SIGNING_SECRET",
|
||||
"$STRIPE_CLIENT_ID",
|
||||
"$STRIPE_PRIVATE_KEY",
|
||||
"$STRIPE_WEBHOOK_SECRET",
|
||||
"$STRIPE_PRODUCT_ID_STARTER",
|
||||
"$STRIPE_PRODUCT_ID_ESSENTIALS",
|
||||
"$STRIPE_PRODUCT_ID_SCALE",
|
||||
"$PAYMENT_FEE_FIXED",
|
||||
"$PAYMENT_FEE_PERCENTAGE",
|
||||
"$TELEMETRY_DEBUG",
|
||||
"$VERCEL_ENV",
|
||||
"$VERCEL_URL",
|
||||
"$VITAL_API_KEY",
|
||||
"$VITAL_WEBHOOK_SECRET",
|
||||
"$VITAL_DEVELOPMENT_MODE",
|
||||
"$VITAL_REGION",
|
||||
"$ZAPIER_INVITE_LINK",
|
||||
"$ALCHEMY_API_KEY",
|
||||
"$INFURA_API_KEY",
|
||||
"$GITHUB_API_REPO_TOKEN",
|
||||
"yarn.lock"
|
||||
],
|
||||
"globalEnv": [
|
||||
"ALCHEMY_API_KEY",
|
||||
"ANALYZE",
|
||||
"API_KEY_PREFIX",
|
||||
"APP_USER_NAME",
|
||||
"BUILD_ID",
|
||||
"CALCOM_LICENSE_KEY",
|
||||
"CALCOM_TELEMETRY_DISABLED",
|
||||
"CALENDSO_ENCRYPTION_KEY",
|
||||
"CI",
|
||||
"CLOSECOM_API_KEY",
|
||||
"CRON_API_KEY",
|
||||
"DAILY_API_KEY",
|
||||
"DAILY_SCALE_PLAN",
|
||||
"DEBUG",
|
||||
"EMAIL_FROM",
|
||||
"EMAIL_SERVER_HOST",
|
||||
"EMAIL_SERVER_PASSWORD",
|
||||
"EMAIL_SERVER_PORT",
|
||||
"EMAIL_SERVER_USER",
|
||||
"EMAIL_SERVER",
|
||||
"EXCHANGE_DEFAULT_EWS_URL",
|
||||
"GIPHY_API_KEY",
|
||||
"GITHUB_API_REPO_TOKEN",
|
||||
"GOOGLE_API_CREDENTIALS",
|
||||
"GOOGLE_LOGIN_ENABLED",
|
||||
"HEROKU_APP_NAME",
|
||||
"HUBSPOT_CLIENT_ID",
|
||||
"HUBSPOT_CLIENT_SECRET",
|
||||
"INFURA_API_KEY",
|
||||
"INTEGRATION_TEST_MODE",
|
||||
"IP_BANLIST",
|
||||
"LARK_OPEN_APP_ID",
|
||||
"LARK_OPEN_APP_SECRET",
|
||||
"LARK_OPEN_VERIFICATION_TOKEN",
|
||||
"MS_GRAPH_CLIENT_ID",
|
||||
"MS_GRAPH_CLIENT_SECRET",
|
||||
"NEXT_PUBLIC_API_URL",
|
||||
"NEXT_PUBLIC_APP_NAME",
|
||||
"NEXT_PUBLIC_COMPANY_NAME",
|
||||
"NEXT_PUBLIC_CONSOLE_URL",
|
||||
"NEXT_PUBLIC_DEBUG",
|
||||
"NEXT_PUBLIC_DISABLE_SIGNUP",
|
||||
"NEXT_PUBLIC_EMBED_LIB_URL",
|
||||
"NEXT_PUBLIC_HOSTED_CAL_FEATURES",
|
||||
"NEXT_PUBLIC_SENDER_ID",
|
||||
"NEXT_PUBLIC_SENDGRID_SENDER_NAME",
|
||||
"NEXT_PUBLIC_SENTRY_DSN",
|
||||
"NEXT_PUBLIC_STRIPE_PRICING_TABLE_ID",
|
||||
"NEXT_PUBLIC_STRIPE_PRICING_TABLE_PUBLISHABLE_KEY",
|
||||
"NEXT_PUBLIC_SUPPORT_MAIL_ADDRESS",
|
||||
"NEXT_PUBLIC_SWAGGER_DOCS_URL",
|
||||
"NEXT_PUBLIC_TEAM_IMPERSONATION",
|
||||
"NEXTAUTH_COOKIE_DOMAIN",
|
||||
"NEXTAUTH_SECRET",
|
||||
"NEXTAUTH_URL",
|
||||
"NODE_ENV",
|
||||
"PAYMENT_FEE_FIXED",
|
||||
"PAYMENT_FEE_PERCENTAGE",
|
||||
"PLAYWRIGHT_HEADLESS",
|
||||
"PLAYWRIGHT_TEST_BASE_URL",
|
||||
"PRISMA_FIELD_ENCRYPTION_KEY",
|
||||
"PRISMA_GENERATE_DATAPROXY",
|
||||
"QUICK",
|
||||
"RAILWAY_STATIC_URL",
|
||||
"RENDER_EXTERNAL_URL",
|
||||
"SALESFORCE_CONSUMER_KEY",
|
||||
"SALESFORCE_CONSUMER_SECRET",
|
||||
"SAML_ADMINS",
|
||||
"SAML_CLIENT_SECRET_VERIFIER",
|
||||
"SAML_DATABASE_URL",
|
||||
"SEND_FEEDBACK_EMAIL",
|
||||
"SENDGRID_API_KEY",
|
||||
"SENDGRID_EMAIL",
|
||||
"SENDGRID_SYNC_API_KEY",
|
||||
"SENTRY_DSN",
|
||||
"SLACK_CLIENT_ID",
|
||||
"SLACK_CLIENT_SECRET",
|
||||
"SLACK_SIGNING_SECRET",
|
||||
"STRIPE_CLIENT_ID",
|
||||
"STRIPE_PRIVATE_KEY",
|
||||
"STRIPE_PRODUCT_ID_ESSENTIALS",
|
||||
"STRIPE_PRODUCT_ID_SCALE",
|
||||
"STRIPE_PRODUCT_ID_STARTER",
|
||||
"STRIPE_WEBHOOK_SECRET",
|
||||
"TANDEM_BASE_URL",
|
||||
"TANDEM_CLIENT_ID",
|
||||
"TANDEM_CLIENT_SECRET",
|
||||
"TELEMETRY_DEBUG",
|
||||
"TWILIO_MESSAGING_SID",
|
||||
"TWILIO_PHONE_NUMBER",
|
||||
"TWILIO_SID",
|
||||
"TWILIO_TOKEN",
|
||||
"TWILIO_VERIFY_SID",
|
||||
"VERCEL_ENV",
|
||||
"VERCEL_URL",
|
||||
"VITAL_API_KEY",
|
||||
"VITAL_DEVELOPMENT_MODE",
|
||||
"VITAL_REGION",
|
||||
"VITAL_WEBHOOK_SECRET",
|
||||
"ZAPIER_INVITE_LINK",
|
||||
"ZOHOCRM_CLIENT_ID",
|
||||
"ZOHOCRM_CLIENT_SECRET",
|
||||
"ZOOM_CLIENT_ID",
|
||||
"ZOOM_CLIENT_SECRET"
|
||||
]
|
||||
}
|
||||
|
|
138
yarn.lock
138
yarn.lock
|
@ -16586,7 +16586,7 @@ __metadata:
|
|||
lint-staged: ^12.5.0
|
||||
prettier: ^2.8.4
|
||||
ts-jest: ^28.0.8
|
||||
turbo: ^1.4.3
|
||||
turbo: ^1.8.3
|
||||
typescript: ^4.9.4
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
@ -37115,154 +37115,74 @@ __metadata:
|
|||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"turbo-android-arm64@npm:1.4.3":
|
||||
version: 1.4.3
|
||||
resolution: "turbo-android-arm64@npm:1.4.3"
|
||||
conditions: os=android & cpu=arm64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"turbo-darwin-64@npm:1.4.3":
|
||||
version: 1.4.3
|
||||
resolution: "turbo-darwin-64@npm:1.4.3"
|
||||
"turbo-darwin-64@npm:1.8.3":
|
||||
version: 1.8.3
|
||||
resolution: "turbo-darwin-64@npm:1.8.3"
|
||||
conditions: os=darwin & cpu=x64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"turbo-darwin-arm64@npm:1.4.3":
|
||||
version: 1.4.3
|
||||
resolution: "turbo-darwin-arm64@npm:1.4.3"
|
||||
"turbo-darwin-arm64@npm:1.8.3":
|
||||
version: 1.8.3
|
||||
resolution: "turbo-darwin-arm64@npm:1.8.3"
|
||||
conditions: os=darwin & cpu=arm64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"turbo-freebsd-64@npm:1.4.3":
|
||||
version: 1.4.3
|
||||
resolution: "turbo-freebsd-64@npm:1.4.3"
|
||||
conditions: os=freebsd & cpu=x64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"turbo-freebsd-arm64@npm:1.4.3":
|
||||
version: 1.4.3
|
||||
resolution: "turbo-freebsd-arm64@npm:1.4.3"
|
||||
conditions: os=freebsd & cpu=arm64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"turbo-linux-32@npm:1.4.3":
|
||||
version: 1.4.3
|
||||
resolution: "turbo-linux-32@npm:1.4.3"
|
||||
conditions: os=linux & cpu=ia32
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"turbo-linux-64@npm:1.4.3":
|
||||
version: 1.4.3
|
||||
resolution: "turbo-linux-64@npm:1.4.3"
|
||||
"turbo-linux-64@npm:1.8.3":
|
||||
version: 1.8.3
|
||||
resolution: "turbo-linux-64@npm:1.8.3"
|
||||
conditions: os=linux & cpu=x64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"turbo-linux-arm64@npm:1.4.3":
|
||||
version: 1.4.3
|
||||
resolution: "turbo-linux-arm64@npm:1.4.3"
|
||||
"turbo-linux-arm64@npm:1.8.3":
|
||||
version: 1.8.3
|
||||
resolution: "turbo-linux-arm64@npm:1.8.3"
|
||||
conditions: os=linux & cpu=arm64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"turbo-linux-arm@npm:1.4.3":
|
||||
version: 1.4.3
|
||||
resolution: "turbo-linux-arm@npm:1.4.3"
|
||||
conditions: os=linux & cpu=arm
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"turbo-linux-mips64le@npm:1.4.3":
|
||||
version: 1.4.3
|
||||
resolution: "turbo-linux-mips64le@npm:1.4.3"
|
||||
conditions: os=linux & cpu=mipsel
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"turbo-linux-ppc64le@npm:1.4.3":
|
||||
version: 1.4.3
|
||||
resolution: "turbo-linux-ppc64le@npm:1.4.3"
|
||||
conditions: os=linux & cpu=ppc64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"turbo-windows-32@npm:1.4.3":
|
||||
version: 1.4.3
|
||||
resolution: "turbo-windows-32@npm:1.4.3"
|
||||
conditions: os=win32 & cpu=ia32
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"turbo-windows-64@npm:1.4.3":
|
||||
version: 1.4.3
|
||||
resolution: "turbo-windows-64@npm:1.4.3"
|
||||
"turbo-windows-64@npm:1.8.3":
|
||||
version: 1.8.3
|
||||
resolution: "turbo-windows-64@npm:1.8.3"
|
||||
conditions: os=win32 & cpu=x64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"turbo-windows-arm64@npm:1.4.3":
|
||||
version: 1.4.3
|
||||
resolution: "turbo-windows-arm64@npm:1.4.3"
|
||||
"turbo-windows-arm64@npm:1.8.3":
|
||||
version: 1.8.3
|
||||
resolution: "turbo-windows-arm64@npm:1.8.3"
|
||||
conditions: os=win32 & cpu=arm64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"turbo@npm:^1.4.3":
|
||||
version: 1.4.3
|
||||
resolution: "turbo@npm:1.4.3"
|
||||
"turbo@npm:^1.8.3":
|
||||
version: 1.8.3
|
||||
resolution: "turbo@npm:1.8.3"
|
||||
dependencies:
|
||||
turbo-android-arm64: 1.4.3
|
||||
turbo-darwin-64: 1.4.3
|
||||
turbo-darwin-arm64: 1.4.3
|
||||
turbo-freebsd-64: 1.4.3
|
||||
turbo-freebsd-arm64: 1.4.3
|
||||
turbo-linux-32: 1.4.3
|
||||
turbo-linux-64: 1.4.3
|
||||
turbo-linux-arm: 1.4.3
|
||||
turbo-linux-arm64: 1.4.3
|
||||
turbo-linux-mips64le: 1.4.3
|
||||
turbo-linux-ppc64le: 1.4.3
|
||||
turbo-windows-32: 1.4.3
|
||||
turbo-windows-64: 1.4.3
|
||||
turbo-windows-arm64: 1.4.3
|
||||
turbo-darwin-64: 1.8.3
|
||||
turbo-darwin-arm64: 1.8.3
|
||||
turbo-linux-64: 1.8.3
|
||||
turbo-linux-arm64: 1.8.3
|
||||
turbo-windows-64: 1.8.3
|
||||
turbo-windows-arm64: 1.8.3
|
||||
dependenciesMeta:
|
||||
turbo-android-arm64:
|
||||
optional: true
|
||||
turbo-darwin-64:
|
||||
optional: true
|
||||
turbo-darwin-arm64:
|
||||
optional: true
|
||||
turbo-freebsd-64:
|
||||
optional: true
|
||||
turbo-freebsd-arm64:
|
||||
optional: true
|
||||
turbo-linux-32:
|
||||
optional: true
|
||||
turbo-linux-64:
|
||||
optional: true
|
||||
turbo-linux-arm:
|
||||
optional: true
|
||||
turbo-linux-arm64:
|
||||
optional: true
|
||||
turbo-linux-mips64le:
|
||||
optional: true
|
||||
turbo-linux-ppc64le:
|
||||
optional: true
|
||||
turbo-windows-32:
|
||||
optional: true
|
||||
turbo-windows-64:
|
||||
optional: true
|
||||
turbo-windows-arm64:
|
||||
optional: true
|
||||
bin:
|
||||
turbo: bin/turbo
|
||||
checksum: ed4f327bf4bdd152a0842c707c4b7f614c360d610fb079dcf351b2d83490883e62e148f30f46c20b963a2c58286461ce12d7fb284f8526801cc25a97a160177f
|
||||
checksum: 4a07d120ef8adf6c8e58a48abd02e075ffa215287cc6c3ef843d4fb08aeb0a566fe810ec9bfc376254468a2aa4f29bae154a60804a83af78dfa86d0e8e995476
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
|
|
Loading…
Reference in New Issue