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

22 lines
515 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",
"start:staging": "NODE_ENV=staging ts-node index.ts",
"start:prod": "NODE_ENV=production ts-node index.ts"
2022-02-25 09:45:31 +01:00
},
"devDependencies": {
"@types/node": "18.7.23",
2022-08-08 08:21:36 +02:00
"db": "workspace:*",
"models": "workspace:*",
"ts-node": "10.9.1",
"typescript": "4.8.4",
"utils": "workspace:*",
"emails": "workspace:*"
2022-02-25 09:45:31 +01:00
}
}