Skip to content

Instantly share code, notes, and snippets.

@raphael-brand
Created March 26, 2021 15:58
Show Gist options
  • Save raphael-brand/3f7ddcf5c28e4ddd027e1cd42da29e27 to your computer and use it in GitHub Desktop.
Save raphael-brand/3f7ddcf5c28e4ddd027e1cd42da29e27 to your computer and use it in GitHub Desktop.
Node.js Typescript Config
{
"name": "sandbox",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "tsc && node dist/index.js",
"dev": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "3.3.0",
"@typescript-eslint/parser": "3.3.0",
"eslint": "7.3.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-prettier": "3.1.4",
"nodemon": "2.0.4",
"prettier": "2.0.5",
"ts-node": "8.10.2",
"typescript": "3.9.5"
},
"keywords": [],
"author": "",
"license": "ISC"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment