Files
bot/packages/scripts/package.json
Baptiste Arnaud 1654de3c1f 🧑‍💻 (emails) Add decent emails management
Use mjml-react to generate emails. Put all emails in a independent package.
2022-10-01 07:00:05 +02:00

22 lines
517 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"
},
"devDependencies": {
"@types/node": "18.7.16",
"db": "workspace:*",
"models": "workspace:*",
"ts-node": "^10.9.1",
"typescript": "^4.8.3",
"utils": "workspace:*",
"emails": "workspace:*"
}
}