|
| 1 | +{ |
| 2 | + "name": "react-env-extension", |
| 3 | + "version": "0.1.0", |
| 4 | + "private": false, |
| 5 | + "scripts": { |
| 6 | + "start": "react-app-rewired start", |
| 7 | + "build": "./scripts/build.sh", |
| 8 | + "test": "react-app-rewired test", |
| 9 | + "serve": "serve -s build", |
| 10 | + "lint": "./node_modules/.bin/prettier --write \"src/**/*.{jsx,js}\" && eslint --fix --ext .jsx,.js src/" |
| 11 | + }, |
| 12 | + "browserslist": { |
| 13 | + "production": [ |
| 14 | + ">0.2%", |
| 15 | + "not dead", |
| 16 | + "not op_mini all" |
| 17 | + ], |
| 18 | + "development": [ |
| 19 | + "last 1 chrome version", |
| 20 | + "last 1 firefox version", |
| 21 | + "last 1 safari version" |
| 22 | + ] |
| 23 | + }, |
| 24 | + "dependencies": { |
| 25 | + "react": "^17.0.1", |
| 26 | + "react-dom": "^17.0.1", |
| 27 | + "react-scripts": "^4.0.0" |
| 28 | + }, |
| 29 | + "devDependencies": { |
| 30 | + "@commitlint/cli": "^11.0.0", |
| 31 | + "@commitlint/config-conventional": "^11.0.0", |
| 32 | + "eslint": "^7.18.0", |
| 33 | + "eslint-config-prettier": "^7.2.0", |
| 34 | + "eslint-plugin-react": "^7.22.0", |
| 35 | + "husky": "^4.3.8", |
| 36 | + "prettier": "^2.2.1", |
| 37 | + "react-app-rewire-multiple-entry": "^2.2.1", |
| 38 | + "react-app-rewired": "^2.1.6", |
| 39 | + "serve": "^11.3.2" |
| 40 | + }, |
| 41 | + "husky": { |
| 42 | + "hooks": { |
| 43 | + "commit-msg": "commitlint -E HUSKY_GIT_PARAMS", |
| 44 | + "pre-commit": "yarn lint" |
| 45 | + } |
| 46 | + } |
| 47 | +} |
0 commit comments