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-07-13 08:17:33 +02:00
|
|
|
"start:staging": "NODE_ENV=staging ts-node index.ts",
|
2022-05-13 15:22:44 -07:00
|
|
|
"start:prod": "NODE_ENV=production ts-node index.ts",
|
2022-05-17 07:21:06 -07:00
|
|
|
"start:workspaces:migration": "ts-node workspaceMigration.ts",
|
|
|
|
"start:workspaces:migration:recover": "ts-node workspaceMigrationRecover.ts"
|
2022-02-25 09:45:31 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-09-12 07:29:36 +02:00
|
|
|
"@types/node": "18.7.16",
|
2022-08-08 08:21:36 +02:00
|
|
|
"db": "workspace:*",
|
|
|
|
"models": "workspace:*",
|
|
|
|
"ts-node": "^10.9.1",
|
2022-09-12 07:29:36 +02:00
|
|
|
"typescript": "^4.8.3",
|
2022-08-08 08:21:36 +02:00
|
|
|
"utils": "*"
|
2022-02-25 09:45:31 +01:00
|
|
|
}
|
|
|
|
}
|