Skip to content

Instantly share code, notes, and snippets.

@Daniel-Vinicius
Created February 22, 2021 22:25
Show Gist options
  • Save Daniel-Vinicius/7a39aab33f1dde5467ce1adb92ad4813 to your computer and use it in GitHub Desktop.
Save Daniel-Vinicius/7a39aab33f1dde5467ce1adb92ad4813 to your computer and use it in GitHub Desktop.
// 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