diff options
| author | 8cy <[email protected]> | 2020-05-05 15:48:49 -0700 |
|---|---|---|
| committer | 8cy <[email protected]> | 2020-05-05 15:48:49 -0700 |
| commit | 8351284dd7b8a0cbf990b35e41356a3947302b67 (patch) | |
| tree | 7827b5afc58d7f3bed74b7e7be4cc9dd83b6ec4e /package.json | |
| parent | del dist/ and change bot.js local (diff) | |
| download | dep-core-8351284dd7b8a0cbf990b35e41356a3947302b67.tar.xz dep-core-8351284dd7b8a0cbf990b35e41356a3947302b67.zip | |
update dependencies
- move mongoose types to devdeps
- add ts and supervisor to devdeps
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" } } |