Created
October 4, 2017 19:58
-
-
Save hlfshell/8321072d600d008b1ddf9eff21008e88 to your computer and use it in GitHub Desktop.
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": "simplest-typescript-express", | |
"version": "1.0.0", | |
"description": "Package.json for the simplest possible typescript service", | |
"main": "dist/index", | |
"types": "dist/index", | |
"scripts": { | |
"live": "nodemon --exec .\\node_modules\\.bin\\ts-node -- src/index.ts", | |
"clean": "rm -rf dist/", | |
"build": "npm run clean && tsc", | |
"start": "node dist/index.js" | |
}, | |
"author": { | |
"name": "Keith Chester", | |
"email": "[email protected]" | |
}, | |
"license": "Private", | |
"dependencies": { | |
"express": "^4.15.5" | |
}, | |
"devDependencies": { | |
"@types/express": "^4.0.37", | |
"@types/node": "^8.0.30", | |
"nodemon": "^1.12.1", | |
"typescript": "^2.5.2" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment