Skip to content

Instantly share code, notes, and snippets.

@hlfshell
Created October 4, 2017 19:58
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hlfshell/8321072d600d008b1ddf9eff21008e88 to your computer and use it in GitHub Desktop.
Save hlfshell/8321072d600d008b1ddf9eff21008e88 to your computer and use it in GitHub Desktop.
{
"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": "kchester@gmail.com"
},
"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