-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.69 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
{
"name": "beautiful-react-hooks",
"version": "0.35.0",
"description": "A collection of beautiful (and hopefully useful) React hooks to speed-up your components and hooks development",
"main": "index.js",
"module": "esm/index.js",
"typings": "index.d.ts",
"scripts": {
"lint": "eslint --ext .js src/",
"build": "npx del-cli dist && rollup -c",
"build-doc": "npx del-cli dist-ghpages && styleguidist build --config docs/styleguidist/styleguidist.config.js",
"test": "nyc mocha --recursive --exit \"./test/**/*.spec.+(js|jsx)\"",
"test:watch": "npm run test -- --watch",
"start": "styleguidist server --config docs/styleguidist/styleguidist.config.js --open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/beautifulinteractions/beautiful-react-hooks.git"
},
"author": {
"name": "Antonio Russo",
"email": "[email protected]"
},
"keywords": [
"react",
"react-hooks"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/beautifulinteractions/beautiful-react-hooks/issues"
},
"homepage": "https://beautifulinteractions.github.io/beautiful-react-hooks/",
"dependencies": {
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1"
},
"peerDependencies": {
"react": ">=17.0.2",
"react-dom": ">=17.0.2"
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/polyfill": "^7.10.4",
"@babel/preset-env": "^7.14.1",
"@babel/preset-react": "^7.13.13",
"@babel/register": "^7.13.16",
"@rollup/plugin-node-resolve": "13.0.0",
"@testing-library/react": "11.2.6",
"@testing-library/react-hooks": "^5.1.2",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-plugin-istanbul": "^6.0.0",
"babel-plugin-transform-require-ignore": "^0.1.1",
"beautiful-react-ui": "^0.57.1",
"chai": "^4.3.4",
"css-loader": "^5.2.4",
"eslint": "^7.25.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-chai-expect": "^2.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "4.2.0",
"glob": "^7.1.6",
"husky": "^6.0.0",
"jsdoc-to-markdown": "^7.0.1",
"jsdom": "^16.5.3",
"jsdom-global": "^3.0.2",
"mocha": "8.3.2",
"mock-local-storage": "1.1.17",
"nyc": "^15.1.0",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-styleguidist": "^11.1.6",
"react-test-renderer": "^17.0.2",
"regenerator-runtime": "0.13.7",
"rollup": "2.47.0",
"rollup-plugin-babel": "4.4.0",
"rxjs": "7.0.0",
"sinon": "^10.0.0",
"style-loader": "2.0.0",
"url-loader": "^4.1.1",
"webpack": "^5.36.2"
}
}