-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.51 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "useformbee",
"version": "1.0.3",
"description": "useFormBee is a custom react hook that helps handle form input, validations and other similar functionalities",
"main": "dist/hooks/useFormBee.js",
"scripts": {
"lint": "eslint '**/*js'",
"lint:fix": "prettier-eslint '**/*js' --write",
"test": "jest",
"clean": "rm -rf build",
"start": "npm run clean && webpack-dev-server --env.mode development --open --hot",
"build": "babel src --out-dir dist",
"prepublishOnly": "npm run build",
"build-dev": "npm run clean && webpack --env.mode development",
"build-prod": "npm run clean && webpack --env.mode production"
},
"dependencies": {
"css-loader": "^3.0.0",
"error-overlay-webpack-plugin": "^0.4.0",
"file-loader": "^4.0.0",
"html-webpack-plugin": "^3.2.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"style-loader": "^0.23.1",
"uglifyjs-webpack-plugin": "^2.1.3",
"validatorjs": "^3.15.1",
"webpack": "^4.35.2",
"webpack-cli": "^3.3.5",
"webpack-merge": "^4.2.1"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.0",
"@babel/node": "^7.5.0",
"@babel/plugin-transform-runtime": "^7.5.0",
"@babel/preset-env": "^7.5.0",
"@babel/preset-react": "^7.0.0",
"@testing-library/jest-dom": "^4.0.0",
"@testing-library/react": "^8.0.9",
"@testing-library/react-hooks": "^1.1.0",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"eslint": "^6.0.1",
"eslint-config-airbnb": "^17.1.1",
"eslint-loader": "^2.2.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.2",
"husky": "^3.0.2",
"jest": "^24.8.0",
"lint-staged": "^9.1.0",
"path": "^0.12.7",
"prettier-eslint": "^9.0.0",
"prettier-eslint-cli": "^5.0.0",
"react-test-renderer": "^16.8.6",
"webpack-dev-server": "^3.7.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Eazybee/useFormBee.git"
},
"keywords": [
"react",
"useform",
"react form"
],
"author": "Ilori Ezekiel",
"license": "MIT",
"bugs": {
"url": "https://github.com/Eazybee/useFormBee/issues"
},
"homepage": "https://github.com/Eazybee/useFormBee#readme"
}