-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
57 lines (57 loc) · 1.3 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
{
"name": "react-observer-api",
"version": "1.0.13",
"description": "React lazy loading component, images, etc. It will monitor element and tell you when element enters into the viewport.",
"main": "build/index.js",
"scripts": {
"dev": "webpack-dev-server",
"build": "webpack"
},
"author": "srigar s",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/srigar/react-lazyloading"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.5",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.10.3"
},
"babel": {
"presets": [
"@babel/env",
"@babel/react"
]
},
"keywords": [
"npm",
"react",
"lazy",
"load",
"lazyload",
"lazy load",
"virtual scrolling",
"infinite scrolling",
"lazyloading",
"hooks",
"react-lazy-load",
"react-lazyloading",
"react lazy loading",
"react lazy load"
],
"resolutions": {
"serialize-javascript": "3.1.0"
}
}