Skip to content

Instantly share code, notes, and snippets.

@angellandros
Last active February 23, 2020 10:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save angellandros/6e2eb336a567a1d160de4a86ab11b7f3 to your computer and use it in GitHub Desktop.
Save angellandros/6e2eb336a567a1d160de4a86ab11b7f3 to your computer and use it in GitHub Desktop.
Node package manager config file for a simple Express.js application
{
"name": "simple-express",
"version": "0.0.1",
"description": "A simple Express.js app",
"main": "src/main.ts",
"dependencies": {
"express": "^4.17.1"
},
"devDependencies": {
"typescript": "^3.6.4"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/angellandros/simple-express.git"
},
"keywords": [
"expressjs",
"typescript"
],
"author": "Mohammad-Ali A'RÂBI <aerabi@gmx.de>",
"license": "ISC",
"bugs": {
"url": "https://github.com/angellandros/simple-express/issues"
},
"homepage": "https://github.com/angellandros/simple-express#readme"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment