2
0
Files
bot/packages/scripts/package.json
Baptiste Arnaud 57866c4aa3 chore: upgrade packages
Also fixes sendEmail viewer e2e test
2022-08-29 08:51:45 +02:00

23 lines
627 B
JSON

{
"name": "scripts",
"version": "1.0.0",
"main": "index.js",
"license": "AGPL-3.0-or-later",
"private": true,
"scripts": {
"start:local": "ts-node index.ts",
"start:staging": "NODE_ENV=staging ts-node index.ts",
"start:prod": "NODE_ENV=production ts-node index.ts",
"start:workspaces:migration": "ts-node workspaceMigration.ts",
"start:workspaces:migration:recover": "ts-node workspaceMigrationRecover.ts"
},
"devDependencies": {
"@types/node": "18.7.13",
"db": "workspace:*",
"models": "workspace:*",
"ts-node": "^10.9.1",
"typescript": "^4.8.2",
"utils": "*"
}
}