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

34 lines
1001 B
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": "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",
"telemetry:sendTotalResultsDigest": "tsx sendTotalResultsDigest.ts",
"sendAlertEmails": "tsx sendAlertEmails.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:*",
2023-05-25 17:24:39 +02:00
"@types/node": "20.2.3",
2023-04-03 09:00:39 +02:00
"@types/prompts": "2.4.4",
"deep-object-diff": "1.1.9",
2023-03-14 15:08:53 +01:00
"got": "12.6.0",
"prompts": "2.4.2",
2023-05-25 17:24:39 +02:00
"stripe": "12.6.0",
2023-05-02 14:37:34 -04:00
"tsx": "3.12.7",
"typescript": "5.0.4",
2023-03-14 15:08:53 +01:00
"zod": "3.21.4"
2022-02-25 09:45:31 +01:00
}
}