diff options
Diffstat (limited to 'package.json')
| -rw-r--r-- | package.json | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/package.json b/package.json index 57f07f8..3ea132c 100644 --- a/package.json +++ b/package.json @@ -6,14 +6,13 @@ "scripts": { "build": "tsc || true", "build:dev": "tsc --watch || true", - "start": "npm run build && cd dist && node app || true", - "start:dev": "concurrently \"cd dist\" \"supervisor app\" || true" + "start": "cd dist && node app || true", + "start:dev": "cd dist && supervisor app || true" }, "author": "sin", "license": "MIT", "dependencies": { "@discordjs/opus": "^0.1.0", - "@types/mongoose": "^5.7.12", "animequote": "^1.1.1", "arnie-quote": "^1.3.0", "axios": "^0.19.2", @@ -62,6 +61,9 @@ }, "devDependencies": { "@types/express": "^4.17.6", - "@types/express-handlebars": "^3.1.0" + "@types/express-handlebars": "^3.1.0", + "@types/mongoose": "^5.7.15", + "supervisor": "^0.12.0", + "typescript": "^3.8.3" } } |