Skip to content

Instantly share code, notes, and snippets.

@rajeshdavidbabu
Last active January 9, 2022 19:03
Show Gist options
  • Save rajeshdavidbabu/4921a29d4d7ce2f4c9275b6c32ba77ad to your computer and use it in GitHub Desktop.
Save rajeshdavidbabu/4921a29d4d7ce2f4c9275b6c32ba77ad to your computer and use it in GitHub Desktop.
Package.json for React-TS-Boilerplate
{
"name": "react-ts-architecture",
"version": "1.0.0",
"description": "A React TS based frontend-application without CRA",
"scripts": {
"test": "npm run test"
},
// Engines field helps us to create our project with the required node and npm versions
// for our project.
"engines": {
"node": ">= 14.0.0",
"npm": ">= 6.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rajeshbabu-oviva/react-ts-boilerplate.git"
},
"keywords": [
"React",
"Typescript",
"Frontend"
],
// Browserslist is used to tell which browsers (and their versions) you want to support
// and enables transpilers (eg: Babel) to add the polyfills and fallbacks required
// based on the list.
"browserslist": [
"last 2 versions",
"not dead",
"> 2%",
"IE 11"
],
"author": "Rajesh Babu",
"license": "MIT"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment