-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
83 lines (83 loc) · 2.41 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
83
{
"name": "react-infinite-scroll-list",
"version": "4.0.0",
"description": "React component for create an inifinte list",
"main": "dist/react-infinite-scroll-list.umd.js",
"module": "dist/react-infinite-scroll-list.es5.js",
"es2015": "src/index.js",
"scripts": {
"clean": "rm -rf dist",
"start": "yarn clean && yarn rollup --watch",
"build": "yarn clean && yarn rollup",
"lint": "eslint .",
"rollup": "rollup --config",
"test": "jest",
"test:watch": "yarn test --watch",
"prepublishOnly": "yarn lint && yarn build",
"start-storybook": "start-storybook --port 8080 --static-dir public",
"build-storybook": "build-storybook --static-dir public",
"deploy-storybook": "storybook-to-ghpages"
},
"repository": {
"type": "git",
"url": "https://github.com/samouss/react-infinite-list.git"
},
"files": [
"dist",
"src"
],
"keywords": [
"react",
"component",
"infinite",
"scroll",
"list",
"intersection-observer"
],
"author": {
"name": "Samuel Vaillant",
"email": "samuel.vllnt@gmail.com"
},
"license": "MIT",
"devDependencies": {
"@storybook/addon-options": "3.4.12",
"@storybook/addons": "3.4.12",
"@storybook/cli": "3.4.12",
"@storybook/react": "3.4.12",
"@storybook/storybook-deployer": "2.8.10",
"babel-core": "6.26.3",
"babel-eslint": "10.1.0",
"babel-plugin-external-helpers": "6.22.0",
"babel-plugin-transform-es2015-modules-commonjs": "6.26.2",
"babel-preset-env": "1.7.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"babel-runtime": "6.26.0",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.6",
"enzyme-to-json": "3.6.2",
"eslint": "6.8.0",
"eslint-config-airbnb": "17.1.1",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "3.4.1",
"eslint-plugin-react": "7.26.1",
"jest": "23.6.0",
"prettier": "1.19.1",
"prop-types": "15.7.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-test-renderer": "17.0.2",
"rollup": "2.58.0",
"rollup-plugin-babel": "3.0.7",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-filesize": "9.1.1",
"rollup-plugin-uglify": "6.0.4"
},
"peerDependencies": {
"prop-types": "^15.0.0",
"react": "^16.0.0 || ^17.0.0"
}
}