Skip to content

Instantly share code, notes, and snippets.

@LazyFatArrow
Created January 4, 2019 11:46
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 LazyFatArrow/4685e6ac02bb72c3510e97f68f5f5d9d to your computer and use it in GitHub Desktop.
Save LazyFatArrow/4685e6ac02bb72c3510e97f68f5f5d9d to your computer and use it in GitHub Desktop.
{
"name": "node-typescript-jest-starter",
"version": "0.0.1",
"description": "basic node.js, typescript, and jest project starter",
"main": "dist/index.js",
"scripts": {
"build": "rimraf dist && tsc",
"start": "node dist/index.js",
"dev": "nodemon --exec ts-node src/index.ts --watch src",
"test": "jest --watch",
"coverage": "jest --coverage"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^23.3.11",
"@types/node": "^10.12.18",
"jest": "^23.6.0",
"nodemon": "^1.18.9",
"rimraf": "^2.6.3",
"ts-jest": "^23.10.5",
"ts-node": "^7.0.1",
"typescript": "^3.2.2"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment