Files
bot/packages/scripts/package.json
Baptiste Arnaud ee338f62dc build: add pnpm
2022-08-10 18:49:06 +02:00

23 lines
626 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.6.4",
"db": "workspace:*",
"models": "workspace:*",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"utils": "*"
}
}