UNPKG

cra-template-rb

Version:

The official React Boilerplate template for Create React App

173 lines (172 loc) 5.63 kB
{ "name": "cra-template-rb", "description": "The official React Boilerplate template for Create React App", "version": "1.2.6", "repository": { "type": "git", "url": "https://github.com/react-boilerplate/react-boilerplate-cra-template.git" }, "license": "MIT", "engines": { "node": ">=14.x" }, "bugs": { "url": "https://github.com/react-boilerplate/react-boilerplate-cra-template/issues" }, "main": "template.json", "files": [ "template", "template.json" ], "keywords": [ "react", "create-react-app", "template", "typescript", "redux", "reduxjs", "react-redux", "react-boilerplate", "styled-components" ], "scripts": { "// ---DEFAULT CRA---": "", "start": "react-scripts start", "build": "react-scripts build", "test": "react-scripts test", "// ---TEMPLATE---": "Scripts will be also in the template", "start:prod": "yarn run build && serve -s build", "test:generators": "ts-node ./internals/testing/generators/test-generators.ts", "checkTs": "tsc --noEmit", "eslint": "eslint --ext js,ts,tsx", "lint": "yarn run eslint src", "lint:fix": "yarn run eslint --fix src", "lint:css": "stylelint src/**/*.css", "generate": "plop --plopfile internals/generators/plopfile.ts", "cleanAndSetup": "ts-node ./internals/scripts/clean.ts", "prettify": "prettier --write", "extract-messages": "i18next-scanner --config=internals/extractMessages/i18next-scanner.config.js", "// ---TESTING TEMPLATE---": "", "test:internals": "yarn run test:extract-messages && yarn run test:generators", "test:extract-messages": "jest --config=internals/extractMessages/jest.config.js", "verify-startingTemplate-changes": "ts-node ./internals/scripts/verify-startingTemplate-changes.ts", "test:coverage": "yarn run test --watchAll=false --coverage", "test:cra": "yarn run create:cra-app && cd generated-cra-app && yarn run test:generators && yarn run lint && yarn run checkTs && yarn run cleanAndSetup && yarn run lint && yarn run checkTs", "// ---BUILDING TEMPLATE---": "", "create:npm-package": "ts-node ./internals/scripts/create-npm-package.script.ts", "create:cra-app": "ts-node ./internals/scripts/create-cra-app.script.ts", "// ---PUBLISHING---": "", "publish:github": "cross-env PUBLIC_URL='/react-boilerplate-cra-template' yarn build && gh-pages -d build", "changelog": "ts-node ./internals/scripts/create-changelog.script.ts", "release": "standard-version", "publish:npm": "yarn run create:npm-package && yarn publish .cra-template-rb --non-interactive" }, "lint-staged": { "*.{ts,tsx,js,jsx}": [ "yarn run eslint --fix" ], "*.{md,json}": [ "prettier --write" ] }, "jest": { "collectCoverageFrom": [ "src/**/*.{js,jsx,ts,tsx}", "!src/**/*/*.d.ts", "!src/**/*/Loadable.{js,jsx,ts,tsx}", "!src/**/*/messages.ts", "!src/reportWebVitals.ts", "!src/**/*/types.ts", "!src/index.tsx" ], "coverageThreshold": { "global": { "branches": 90, "functions": 90, "lines": 90, "statements": 90 } } }, "dependencies": { "@reduxjs/toolkit": "1.8.5", "fontfaceobserver": "2.3.0", "i18next": "21.9.2", "i18next-browser-languagedetector": "6.1.5", "react": "18.2.0", "react-app-polyfill": "3.0.0", "react-dom": "18.2.0", "react-helmet-async": "1.3.0", "react-i18next": "11.18.6", "react-is": "18.2.0", "react-redux": "7.2.8", "react-router-dom": "6.3.0", "redux-injectors": "1.3.0", "redux-saga": "1.2.1", "sanitize.css": "13.0.0", "styled-components": "5.3.5", "web-vitals": "2.1.4" }, "devDependencies": { "@commitlint/cli": "17.1.2", "@commitlint/config-conventional": "17.1.0", "@testing-library/jest-dom": "5.16.5", "@testing-library/react": "13.4.0", "@types/fontfaceobserver": "^2.1.0", "@types/jest": "^27.5.2", "@types/node": "^14.18.27", "@types/react": "^18.0.20", "@types/react-dom": "^18.0.6", "@types/react-redux": "^7.1.24", "@types/react-test-renderer": "^18.0.0", "@types/rimraf": "^3.0.2", "@types/shelljs": "^0.8.11", "@types/styled-components": "^5.1.26", "@types/testing-library__jest-dom": "^5.14.5", "@types/webpack": "^5.28.0", "@types/webpack-env": "^1.18.0", "chalk": "4.1.2", "cross-env": "7.0.3", "devmoji": "2.3.0", "eslint-config-prettier": "8.5.0", "eslint-plugin-prettier": "4.2.1", "eslint-plugin-react-hooks": "4.6.0", "gh-pages": "4.0.0", "git-branch-is": "4.0.0", "husky": "8.0.1", "i18next-scanner": "4.0.0", "inquirer": "7.3.3", "inquirer-directory": "2.2.0", "jest-styled-components": "7.1.1", "lint-staged": "13.0.3", "node-plop": "0.26.3", "plop": "2.7.6", "prettier": "2.7.1", "react-scripts": "5.0.1", "react-test-renderer": "18.2.0", "replace-in-file": "6.3.5", "rimraf": "3.0.2", "serve": "14.0.1", "shelljs": "0.8.5", "standard-version": "9.5.0", "stylelint": "14.12.0", "stylelint-config-recommended": "9.0.0", "stylelint-config-styled-components": "0.1.1", "stylelint-processor-styled-components": "1.10.0", "ts-jest": "27.1.5", "ts-node": "10.9.1", "typescript": "4.6.4" }, "browserslist": { "production": [ ">0.2%", "not dead", "not op_mini all" ], "development": [ "last 1 chrome version", "last 1 firefox version", "last 1 safari version" ] } }