-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
82 lines (82 loc) · 2.24 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
{
"name": "react-infinite-grid-scroller",
"version": "2.2.5",
"description": "infinite vertical or horizontal scroll using css grid layout",
"main": "index.js",
"scripts": {
"dev": "webpack --mode=development --devtool 'eval-source-map' --config webpack.config.js",
"build": "webpack --mode=production --config webpack.config.js",
"test": "echo \"No test specified\""
},
"publishConfig": {
"access": "public"
},
"keywords": [
"scroller",
"scrolling",
"react",
"infinite",
"grid",
"horizontal",
"vertical",
"uniform",
"fixed",
"variable",
"dynamic",
"list",
"virtual",
"IntersectionObserver",
"ResizeObserver",
"Drag and drop"
],
"repository": {
"type": "git",
"url": "git+https://github.com/HenrikBechmann/react-infinite-grid-scroller.git"
},
"author": "Henrik Bechmann",
"license": "MIT",
"bugs": {
"url": "https://github.com/HenrikBechmann/react-infinite-grid-scroller/issues"
},
"homepage": "https://github.com/HenrikBechmann/react-infinite-grid-scroller#readme",
"dependencies": {
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dnd-touch-backend": "^16.0.1",
"react-error-boundary": "^4.0.4",
"react-reverse-portal": "^2.0.1",
"requestidlecallback": "^0.3.0"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.5",
"@types/node": "^20.1.1",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"babel-loader": "^9.1.0",
"css-loader": "^6.8.1",
"eslint": "^8.31.0",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"style-loader": "^3.3.3",
"ts-loader": "^9.2.6",
"typescript": "^5.0.4",
"url-loader": "^4.1.1",
"webpack": "^5.61.0",
"webpack-cli": "^5.0.1",
"webpack-sources": "^3.2.1"
},
"directories": {
"lib": "lib"
}
}