cra-template-boilerplate-ialexanderbrito
Version:
47 lines (46 loc) • 1.16 kB
JSON
{
"package": {
"scripts": {
"start": "serve -s build",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint src/ --fix",
"lint-dev": "eslint src --max-warnings=0",
"prepare": "husky install",
"dev": "react-scripts start",
"release": "semantic-release --no-ci"
},
"eslintConfig": {
"extends": ["react-app", "react-app/jest"]
},
"dependencies": {
"axios": "^0.27.2",
"classnames": "^2.3.1",
"formik": "^2.2.9",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-hot-toast": "^2.2.0",
"react-icons": "^4.3.1",
"react-router-dom": "^6.3.0",
"react-scripts": "5.0.1",
"sass": "^1.51.0",
"serve": "^13.0.2",
"typescript": "^4.6.4",
"use-local-storage": "^2.3.6",
"web-vitals": "^2.1.4",
"yup": "^0.32.11"
},
"lint-staged": {
"*.ts(x)": [
"prettier --write",
"eslint src/ --fix"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}
}