-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.97 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
{
"name": "react-just-use-hooks",
"version": "1.0.0",
"description": "A collection of re-useable react hooks",
"main": "index.js",
"repository": "https://github.com/yisheng90/react-just-use-hooks.git",
"author": "Lee Yi Sheng <[email protected]>",
"license": "MIT",
"scripts": {
"build": "webpack",
"test": "jest --config jestconfig.json --passWithNoTests",
"lint": "eslint 'src/**/*'",
"lint:fix": "eslint 'src/**/*' --fix"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@testing-library/react": "^10.0.1",
"@testing-library/react-hooks": "^3.2.1",
"@types/jest": "^25.1.4",
"@types/react": "^16.9.25",
"@types/react-dom": "^16.9.5",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-import-resolver-webpack": "^0.10.1",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.8.2",
"jest": "^25.2.1",
"lint-staged": "^10.0.9",
"prettier": "^2.0.2",
"ts-jest": "^25.2.1",
"typescript": "^3.8.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"peerDependecies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"prettier --write",
"git add"
]
},
"keywords": [
"React",
"Hooks",
"Custom Hooks"
],
"bugs": {
"url": "https://github.com/yisheng90/react-just-use-hooks/issues"
},
"homepage": "https://github.com/yisheng90/react-just-use-hooks#readme"
}