2
0
Files
bot/packages/scripts/package.json

62 lines
2.2 KiB
JSON
Raw Normal View History

2022-02-25 09:45:31 +01:00
{
"name": "@typebot.io/scripts",
2022-02-25 09:45:31 +01:00
"version": "1.0.0",
"main": "index.js",
2022-03-17 16:39:12 +01:00
"license": "AGPL-3.0-or-later",
2022-02-25 09:45:31 +01:00
"private": true,
"scripts": {
"playground": "SKIP_ENV_CHECK=true dotenv -e ./.env.local -- tsx playground.ts",
"db:cleanDatabase": "tsx cleanDatabase.ts",
"db:backup": "tsx backupDatabase.ts",
"db:restore": "tsx restoreDatabase.ts",
"db:setCustomPlan": "tsx setCustomPlan.ts",
"db:bulkUpdate": "tsx bulkUpdate.ts",
"db:fixTypebots": "tsx fixTypebots.ts",
"checkAndReportChatsUsage": "tsx checkAndReportChatsUsage.ts",
"inspectUser": "tsx inspectUser.ts",
"checkSubscriptionsStatus": "tsx checkSubscriptionsStatus.ts",
"createChatsPrices": "tsx createChatsPrices.ts",
"migrateSubscriptionsToUsageBased": "tsx migrateSubscriptionsToUsageBased.ts",
"insertUsersInBrevoList": "tsx insertUsersInBrevoList.ts",
2024-01-02 11:03:30 +01:00
"getUsage": "tsx getUsage.ts",
"suspendWorkspace": "tsx suspendWorkspace.ts",
"destroyUser": "tsx destroyUser.ts",
"updateTypebot": "tsx updateTypebot.ts",
"updateWorkspace": "tsx updateWorkspace.ts",
"inspectTypebot": "tsx inspectTypebot.ts",
"inspectWorkspace": "tsx inspectWorkspace.ts",
"getCoupon": "tsx getCoupon.ts",
2024-02-08 10:27:22 +01:00
"redeemCoupon": "tsx redeemCoupon.ts",
"exportResults": "tsx exportResults.ts",
"updateUserEmail": "tsx updateUserEmail.ts",
"inspectChatSession": "tsx inspectChatSession.ts",
"deleteChatSession": "tsx deleteChatSession.ts"
2022-02-25 09:45:31 +01:00
},
"devDependencies": {
"@typebot.io/emails": "workspace:*",
"@typebot.io/lib": "workspace:*",
"@typebot.io/prisma": "workspace:*",
"@typebot.io/schemas": "workspace:*",
"@types/cli-progress": "^3.11.5",
2023-07-15 10:46:36 +02:00
"@types/node": "20.4.2",
"@types/papaparse": "5.3.7",
2023-04-03 09:00:39 +02:00
"@types/prompts": "2.4.4",
"deep-object-diff": "1.1.9",
"ky": "1.2.3",
"prompts": "2.4.2",
2023-07-15 10:46:36 +02:00
"stripe": "12.13.0",
2023-05-02 14:37:34 -04:00
"tsx": "3.12.7",
"typescript": "5.4.5",
"zod": "3.22.4"
},
"dependencies": {
"@clack/prompts": "^0.7.0",
"@paralleldrive/cuid2": "2.2.1",
"cli-progress": "^3.12.0",
"papaparse": "5.4.1",
"@typebot.io/results": "workspace:*",
"@typebot.io/billing": "workspace:*",
"@typebot.io/telemetry": "workspace:*"
2022-02-25 09:45:31 +01:00
}
}