diff options
author | Eugene Sokolov <eug-vs@keemail.me> | 2020-06-27 00:19:17 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-27 00:19:17 +0300 |
commit | 08994137ddbeee5c3d407c215575e9681fd3962b (patch) | |
tree | 76eafd1739ca8e85882990ad8b8c50626ad450ce /package.json | |
parent | c4619eb6d3fb3b9df5d921250391bb49700f055d (diff) | |
parent | 1fbf5ffbabc1ea2924e68c735e4d2b87643b5fc0 (diff) | |
download | which-api-08994137ddbeee5c3d407c215575e9681fd3962b.tar.gz |
Merge pull request #13 from which-ecosystem/deployment
Setup project for Heroku deployment
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/package.json b/package.json index c6e4038..ca39263 100644 --- a/package.json +++ b/package.json @@ -3,6 +3,7 @@ "version": "1.0.0", "main": "index.ts", "scripts": { + "start": "ts-node index.ts", "lint": "eslint . --ext ts --max-warnings 0", "test": "npm run lint" }, @@ -18,11 +19,19 @@ "@feathersjs/feathers": "^4.5.3", "@feathersjs/socketio": "^4.5.4", "@feathersjs/transport-commons": "^4.5.3", + "@types/bluebird": "^3.5.32", + "@types/cors": "^2.8.6", + "@types/lodash": "^4.14.155", + "@types/mongoose": "^5.7.23", + "@typescript-eslint/eslint-plugin": "^3.2.0", + "@typescript-eslint/parser": "^3.2.0", "bluebird": "^3.7.2", "cors": "^2.8.5", "feathers-mongoose": "^8.3.0", "lodash": "^4.17.15", "mongoose": "^5.9.18", + "ts-node": "^8.10.2", + "typescript": "^3.9.5", "which-types": "^1.4.1" }, "repository": { @@ -35,15 +44,8 @@ "homepage": "https://github.com/eug-vs/which-api#readme", "description": "", "devDependencies": { - "@types/bluebird": "^3.5.32", - "@types/cors": "^2.8.6", - "@types/lodash": "^4.14.155", - "@types/mongoose": "^5.7.23", - "@typescript-eslint/eslint-plugin": "^3.2.0", - "@typescript-eslint/parser": "^3.2.0", "eslint": "^7.2.0", "eslint-config-airbnb-typescript": "^8.0.2", - "eslint-plugin-import": "^2.21.2", - "typescript": "^3.9.5" + "eslint-plugin-import": "^2.21.2" } } |