chore: added scripts

This commit is contained in:
Elias Renman
2023-05-21 17:25:42 +02:00
parent 50c1fbc31b
commit a3e32e76c1
6 changed files with 268 additions and 3 deletions

View File

@@ -4,9 +4,15 @@
"description": "Gardening server",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "rm -rf build && tsc --p tsconfig.json",
"start": "node ./dist/index.js",
"start:dev": "nodemon -e ts -w ./src -x ts-node ./src/index.ts"
},
"devDependencies": {
"@types/node": "^20.2.1",
"@types/node-cron": "^3.0.7",
"nodemon": "^2.0.22",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},