Created
February 22, 2021 22:25
-
-
Save Daniel-Vinicius/7a39aab33f1dde5467ce1adb92ad4813 to your computer and use it in GitHub Desktop.
This file contains 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
// Frontend | |
"scripts": { | |
"start": "react-scripts start", | |
"build": "react-scripts build", | |
"test": "react-scripts test", | |
"eject": "react-scripts eject", | |
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --quiet", | |
"lint-fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix" | |
}, | |
// Backend | |
"scripts": { | |
"build": "tsc", | |
"dev:server": "ts-node-dev --inspect --transpile-only --ignore node_modules src/server.ts", | |
"start": "ts-node src/index.ts", | |
"typeorm": "ts-node-dev ./node_modules/typeorm/cli.js", | |
"lint": "eslint . --ext .ts --quiet", | |
"lint-fix": "eslint . --ext .ts --fix" | |
}, | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment