|
| 1 | +{ |
| 2 | + "name": "useFormBee", |
| 3 | + "version": "1.0.0", |
| 4 | + "description": "useFormBee is a custom react hook that helps handle form input, validations and other simiar functionalities", |
| 5 | + "main": "src/index.js", |
| 6 | + "scripts": { |
| 7 | + "lint": "eslint '**/*js'", |
| 8 | + "lint:fix": "prettier-eslint '**/*js' --write", |
| 9 | + "test": "echo \"Error: no test specified\" && exit 1", |
| 10 | + "clean": "rm -rf build", |
| 11 | + "start": "npm run clean && webpack-dev-server --env.mode development --open --hot", |
| 12 | + "build-dev": "npm run clean && webpack --env.mode development", |
| 13 | + "build-prod": "npm run clean && webpack --env.mode production" |
| 14 | + }, |
| 15 | + "dependencies": { |
| 16 | + "css-loader": "^3.0.0", |
| 17 | + "error-overlay-webpack-plugin": "^0.4.0", |
| 18 | + "file-loader": "^4.0.0", |
| 19 | + "html-webpack-plugin": "^3.2.0", |
| 20 | + "optimize-css-assets-webpack-plugin": "^5.0.3", |
| 21 | + "prop-types": "^15.7.2", |
| 22 | + "react": "^16.8.6", |
| 23 | + "react-dom": "^16.8.6", |
| 24 | + "style-loader": "^0.23.1", |
| 25 | + "uglifyjs-webpack-plugin": "^2.1.3", |
| 26 | + "webpack": "^4.35.2", |
| 27 | + "webpack-cli": "^3.3.5", |
| 28 | + "webpack-merge": "^4.2.1" |
| 29 | + }, |
| 30 | + "devDependencies": { |
| 31 | + "@babel/core": "^7.5.0", |
| 32 | + "@babel/node": "^7.5.0", |
| 33 | + "@babel/plugin-transform-runtime": "^7.5.0", |
| 34 | + "@babel/preset-env": "^7.5.0", |
| 35 | + "@babel/preset-react": "^7.0.0", |
| 36 | + "babel-eslint": "^10.0.2", |
| 37 | + "babel-loader": "^8.0.6", |
| 38 | + "eslint": "^6.0.1", |
| 39 | + "eslint-config-airbnb": "^17.1.1", |
| 40 | + "eslint-loader": "^2.2.1", |
| 41 | + "eslint-plugin-import": "^2.18.0", |
| 42 | + "eslint-plugin-jsx-a11y": "^6.2.3", |
| 43 | + "eslint-plugin-react": "^7.14.2", |
| 44 | + "husky": "^3.0.0", |
| 45 | + "lint-staged": "^9.1.0", |
| 46 | + "path": "^0.12.7", |
| 47 | + "prettier-eslint": "^9.0.0", |
| 48 | + "prettier-eslint-cli": "^5.0.0", |
| 49 | + "webpack-dev-server": "^3.7.2" |
| 50 | + }, |
| 51 | + "husky": { |
| 52 | + "hooks": { |
| 53 | + "pre-commit": "lint-staged" |
| 54 | + } |
| 55 | + }, |
| 56 | + "lint-staged": { |
| 57 | + "*.js": [ |
| 58 | + "eslint --fix", |
| 59 | + "git add" |
| 60 | + ] |
| 61 | + }, |
| 62 | + "repository": { |
| 63 | + "type": "git", |
| 64 | + "url": "git+https://github.com/Eazybee/Webpack.git" |
| 65 | + }, |
| 66 | + "keywords": [ |
| 67 | + "webpack", |
| 68 | + "react", |
| 69 | + "configuration" |
| 70 | + ], |
| 71 | + "author": "Ilori Ezekiel", |
| 72 | + "license": "MIT", |
| 73 | + "bugs": { |
| 74 | + "url": "https://github.com/Eazybee/Webpack/issues" |
| 75 | + }, |
| 76 | + "homepage": "https://github.com/Eazybee/Webpack#readme" |
| 77 | +} |
0 commit comments