-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.57 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
88
89
90
91
92
93
94
95
96
{
"name": "@brightleaf/react-hooks",
"version": "5.1.1",
"description": "Useful react hooks",
"files": [
"/lib"
],
"main": "./lib/index.js",
"scripts": {
"roll": "rollup -c",
"test": "jest ./src",
"dev": "webpack-dev-server --config ./webpack/webpack.config.js --mode development",
"preversion": "npx isom build && npx isom build:examples",
"postversion": "npm publish --access=public",
"postpublish": "git push origin --all --follow-tags && npx publisher"
},
"keywords": [
"react",
"react-hooks",
"utils",
"tools",
"graphql",
"fetch",
"DOM",
"hooks",
"helpers",
"cookies",
"reactjs",
"events"
],
"homepage": "https://brightleaf.dev/hooks",
"author": "Brightleaf JS",
"repository": {
"type": "git",
"url": "https://github.com/brightleaf/react-hooks.git"
},
"bugs": {
"url": "https://github.com/brightleaf/react-hooks/issues"
},
"license": "MIT",
"dependencies": {
"@hapi/nes": "^12.0.2"
},
"devDependencies": {
"@babel/cli": "^7.10.4",
"@babel/core": "^7.10.4",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@kev_nz/async-tools": "^1.2.3",
"@kev_nz/eslint-config": "^5.2.2",
"@kev_nz/publisher": "^4.0.1",
"@reach/router": "^1.3.4",
"@testing-library/react": "^10.4.5",
"@testing-library/react-hooks": "^3.3.0",
"babel-loader": "^8.1.0",
"copy-webpack-plugin": "^6.0.3",
"css-loader": "^3.6.0",
"eslint": "^7.4.0",
"eslint-plugin-react-hooks": "^4.0.6",
"graphql-request": "^2.0.0",
"hash-source": "^1.0.5",
"html-loader": "^1.1.0",
"html-webpack-plugin": "^4.3.0",
"isom": "^1.0.0",
"jest": "^26.1.0",
"jest-fetch-mock": "^3.0.3",
"jest-localstorage-mock": "^2.4.2",
"jest-websocket-mock": "^2.0.2",
"markdown-loader": "^5.1.0",
"mock-socket": "^9.0.3",
"react": ">=16.13.1",
"react-dom": "^16.13.1",
"react-hot-loader": "^4.12.21",
"react-test-renderer": "^16.13.1",
"rollup": "^2.21.0",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"style-loader": "^1.2.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"peerDependencies": {
"react": "16.x || 17.x || 18.x",
"graphql-request": "*"
},
"jest": {
"setupFiles": [
"jest-localstorage-mock",
"./setupJest.js"
]
}
}