Created
March 26, 2021 15:58
-
-
Save raphael-brand/3f7ddcf5c28e4ddd027e1cd42da29e27 to your computer and use it in GitHub Desktop.
Node.js Typescript Config
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": "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