forked from antonioru/beautiful-react-hooks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.94 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.94 KB
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
{
"name": "beautiful-react-hooks",
"version": "1.0.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",
"scripts": {
"lint": "eslint src/ --ext .ts",
"build-cjs": "tsc --project ./tsconfig.cjs.json",
"build-esm": "tsc --project ./tsconfig.esm.json",
"build": "npx del-cli dist && npm run build-cjs && npm run build-esm && echo '\nSuccessfully built'",
"build-doc": "npx del-cli dist-ghpages && npx styleguidist build",
"test": "nyc mocha --recursive --exit \"./test/**/*.spec.+(js|jsx)\"",
"test:watch": "npm run test -- --watch",
"start": "npx styleguidist server"
},
"browserslist": [
">1%",
"last 1 version",
"Firefox ESR",
"not dead"
],
"repository": {
"type": "git",
"url": "git+https://github.com/beautifulinteractions/beautiful-react-hooks.git"
},
"author": {
"name": "Antonio Russo",
"email": "antonio@beautifulinteractions.com"
},
"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.15.0",
"@babel/polyfill": "^7.10.4",
"@babel/preset-env": "7.15.0",
"@babel/preset-react": "7.14.5",
"@babel/register": "^7.15.3",
"@testing-library/react": "12.0.0",
"@testing-library/react-hooks": "^7.0.1",
"@types/lodash.debounce": "4.0.6",
"@types/lodash.throttle": "4.1.6",
"@typescript-eslint/eslint-plugin": "4.29.3",
"@typescript-eslint/parser": "4.29.3",
"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": "^2.0.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-airbnb-typescript": "14.0.0",
"eslint-plugin-chai-expect": "^2.2.0",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "4.2.0",
"glob": "^7.1.7",
"husky": "^7.0.2",
"jsdoc-to-markdown": "^7.0.1",
"jsdom": "^17.0.0",
"jsdom-global": "^3.0.2",
"mocha": "9.1.0",
"mock-local-storage": "1.1.17",
"nyc": "^15.1.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-styleguidist": "^9.0.0",
"regenerator-runtime": "0.13.9",
"rxjs": "7.3.0",
"sinon": "^11.1.2",
"style-loader": "^2.0.0",
"ts-loader": "8.3.0",
"typescript": "4.3.5",
"url-loader": "^4.1.1",
"webpack": "^4.9.2"
}
}