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

20 lines
491 B
JSON
Raw Normal View History

2022-02-25 09:45:31 +01:00
{
"name": "scripts",
"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": {
"start:local": "ts-node index.ts",
2022-05-13 15:22:44 -07:00
"start:prod": "NODE_ENV=production ts-node index.ts",
"start:workspaces:migration": "ts-node workspaceMigration.ts",
"start:workspaces:migration:recover": "ts-node workspaceMigrationRecover.ts"
2022-02-25 09:45:31 +01:00
},
"devDependencies": {
"db": "*",
"models": "*",
"utils": "*",
2022-05-13 09:18:25 -07:00
"ts-node": "^10.7.0"
2022-02-25 09:45:31 +01:00
}
}