Last active
February 15, 2019 02:23
-
-
Save bbachi/eb8decea9d3f7f26e6a54885af4fe96f to your computer and use it in GitHub Desktop.
How to write production ready Node.js Rest API - Typescript version
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "user_api", | |
| "version": "1.0.0", | |
| "description": "sample rest api", | |
| "main": "index.ts", | |
| "scripts": { | |
| "test": "echo \"Error: no test specified\" && exit 1" | |
| }, | |
| "repository": { | |
| "type": "git", | |
| "url": "git+https://github.com/bbachi/prod-ready-node-rest-api-typescript.git" | |
| }, | |
| "author": "Bhargav Bachina", | |
| "license": "ISC", | |
| "bugs": { | |
| "url": "https://github.com/bbachi/prod-ready-node-rest-api-typescript/issues" | |
| }, | |
| "homepage": "https://github.com/bbachi/prod-ready-node-rest-api-typescript#readme", | |
| "dependencies": { | |
| "express": "^4.16.4" | |
| }, | |
| "devDependencies": { | |
| "@types/express": "^4.16.1", | |
| "typescript": "^3.3.3" | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment