cra-template-kenny
Version:
A quick start Create React App template my go to dependencies and configurations
104 lines (103 loc) • 2.92 kB
JSON
{
"name": "cra-template-kenny",
"version": "0.2.6",
"license": "MIT",
"author": "Kenny To",
"description": "A quick start Create React App template my go to dependencies and configurations",
"main": "template.json",
"files": [
"template",
"template.json"
],
"keywords": [
"create-react-app",
"cra-template",
"template",
"classnames",
"connected-react-router",
"node-sass",
"prop-types",
"react",
"react-dom",
"react-router",
"react-router-dom",
"react-scripts",
"redux",
"redux-thunk",
"reselect",
"rxjs"
],
"dependencies": {
"@material-ui/core": "^4.11.0",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"classnames": "^2.2.6",
"connected-react-router": "^6.8.0",
"node-sass": "^4.14.1",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.1",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"rxjs": "^6.6.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"test:debug": "react-scripts test",
"lint": "./node_modules/.bin/eslint src",
"lint-fix": "./node_modules/.bin/eslint --fix src --ext .js",
"pretty-quick": "pretty-quick",
"eject": "react-scripts eject",
"clean-files": "rm -rf ./template/public ./template/src",
"copy-files": "cp -a ./src/. template/src && cp -a ./public/. template/public && cp ./.eslintrc.json template/ && cp ./.prettierrc.json template/ && cp ./README.md template/",
"pre-publish": "npm run clean-files && npm run copy-files"
},
"repository": {
"type": "git",
"url": "https://github.com/knyto2/cra-template-kenny",
"directory": "/"
},
"bugs": {
"url": "https://github.com/knyto2/cra-template-kenny/issues"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"eslint": "^6",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-config-standard-react": "^9.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-standard": "^4.0.1",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1"
}
}