forked from belay-labs/bx-stable-infinite-scroll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.58 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
84
85
86
{
"name": "bx-stable-infinite-scroll",
"version": "1.1.2",
"description": "Stable bidirectional infinite scroll React component",
"main": "lib/index.jsx",
"scripts": {
"tsc": "tsc --noEmit",
"prepare": "install-peers && husky install",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --config webpack.publish.js",
"prepublishOnly": "npm run build",
"start": "npm run build-demo && (cd examples/dist && bundle install && bundle exec jekyll serve)",
"build-demo": "webpack --config webpack.example.js",
"deploy-demo": "gh-pages -d examples/dist",
"publish-demo": "npm run build-demo && npm run deploy-demo",
"install-peers": "install-peers"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cathykc/bx-stable-infinite-scroll"
},
"keywords": [
"react",
"scroll",
"chat",
"timeline",
"feed",
"infinite",
"infinite scroll",
"bidirectional",
"two-way"
],
"author": "cathykc",
"license": "ISC",
"bugs": {
"url": "https://github.com/cathykc/bx-stable-infinite-scroll/issues"
},
"homepage": "https://cathykc.github.io/bx-stable-infinite-scroll/",
"peerDependencies": {
"react": ">=16.13.1",
"react-dom": ">=16.13.1"
},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.1",
"@babel/plugin-proposal-optional-chaining": "^7.10.1",
"@babel/polyfill": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"@babel/preset-typescript": "^7.10.1",
"@types/lodash": "^4.14.178",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"babel-loader": "^8.1.0",
"copy-webpack-plugin": "^6.0.2",
"core-js": "^3.6.5",
"css-loader": "^3.5.3",
"eslint": "^7.29.0",
"eslint-plugin-react": "^7.24.0",
"gh-pages": "^3.0.0",
"html-webpack-plugin": "^4.3.0",
"husky": "^6.0.0",
"install-peers-cli": "^2.2.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.1",
"style-loader": "^1.2.1",
"typescript": "^3.9.5",
"url-loader": "^4.1.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"lodash": "^4.17.21",
"randomcolor": "^0.6.2",
"react-virtual": "^2.10.0"
},
"lint-staged": {
"*.{js,css,md,jsx,ts,tsx}": "prettier --write",
"*.{js,jsx,ts,tsx}": "eslint --fix"
}
}