-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.94 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.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
{
"name": "react-optimized-effects",
"version": "1.2.3",
"description": "This React package optimizes the usage of useEffect, eliminating unnecessary re-renders, and efficiently handling multiple API calls. It analyzes dependencies to trigger effects only when needed, ensuring optimal performance. Prevent redundant network requests and enhance the responsiveness of your React application with ease. Install React-Optimized-Effects now for streamlined useEffects and improved efficiency.",
"author": "Mohamed Bahrawy",
"license": "GNU",
"repository": "https://github.com/mBahrawy/react-optimized-effects",
"main": "dist/index.js",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"build": "rollup -c",
"start": "rollup -c -w",
"test": "jest"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"modulePathIgnorePatterns": [
"<rootDir>/dist/"
]
},
"peerDependencies": {
"react": ">= 16.8.0",
"react-dom": ">= 16.8.0"
},
"devDependencies": {
"@testing-library/react-hooks": "^3.4.1",
"@types/jest": "^26.0.7",
"@types/react": "^16.3.13",
"@types/react-dom": "^16.0.5",
"babel-core": "^6.26.3",
"babel-runtime": "^6.26.0",
"eslint-plugin-react-hooks": "^4.0.8",
"jest": "^26.1.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-test-renderer": "^16.13.1",
"rollup": "^1.29.0",
"rollup-plugin-sass": "^1.2.2",
"rollup-plugin-typescript2": "^0.25.3",
"rollup-plugin-uglify": "^6.0.4",
"ts-jest": "^26.1.3",
"typescript": "^3.8.3"
},
"files": [
"dist"
],
"keywords": [
"react",
"useEffect",
"optimize rerender",
"react hooks",
"typescript",
"callback",
"optimization",
"npm"
],
"dependencies": {
"prop-types": "^15.7.2"
}
}