-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
62 lines (62 loc) · 1.82 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
{
"name": "react-vlist",
"version": "0.2.1",
"description": "A virtual list component with customizable item renderers",
"main": "dist/index.js",
"scripts": {
"start": "webpack-dev-server --mode development --open --config webpack.config.demo.js ",
"prod": "webpack --mode production --open --config webpack.config.demo.js ",
"build": "webpack --mode production --config webpack.config.build.js",
"lint": "eslint src",
"test": "jest && codecov",
"prepublish": "rm -rf ./dist && npm run build"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-jest": "^23.0.1",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"css-layout": "^1.1.1",
"css-loader": "^0.28.11",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"eslint-watch": "^4.0.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.1.0",
"jest-fetch-mock": "^1.6.4",
"jest-junit": "^5.0.0",
"json-loader": "^0.5.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-sizeme": "^2.5.2",
"sinon": "^6.2.0",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^1.2.7",
"url-loader": "^1.0.1",
"webpack": "^4.12.0",
"webpack-cli": "^2.1.5",
"webpack-dev-server": "^3.1.4"
},
"author": "Guillermo Quiros",
"license": "MIT",
"keywords": [
"react",
"list",
"itemRender",
"virtual",
"virtualize"
],
"homepage": "https://github.com/guiqui/react-virtual-list"
}