forked from ojame/react-scrollbars
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
71 lines (71 loc) · 1.95 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
{
"name": "@signavio/react-scrollbars",
"version": "0.3.0",
"description": "Stateful scrollbar component for React",
"keywords": [
"react-component",
"scrollbars"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"scripts": {
"start": "cd docs && webpack-dev-server --port 9090 --d --hot --inline --progress --colors",
"transpile": "babel src --out-dir lib",
"prepublishOnly": "npm run transpile",
"format": "prettier --write \"src/**/*.js{,x}\"",
"lint": "eslint \"src/**/*.js{,x}\""
},
"main": "lib/index.js",
"author": "James Coleman",
"license": "ISC",
"bugs": {
"url": "https://github.com/signavio/react-scrollbars/issues"
},
"browserslist": [
"chrome >= 50",
"firefox >= 52",
"safari >= 10",
"ie >= 11"
],
"homepage": "https://github.com/signavio/react-scrollbars",
"devDependencies": {
"@babel/cli": "7.11.6",
"@babel/core": "7.11.6",
"@babel/plugin-transform-runtime": "7.11.5",
"@babel/preset-env": "7.11.5",
"@babel/preset-react": "7.10.4",
"autoprefixer-loader": "^1.0.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^5.3.2",
"css-loader": "^0.9.0",
"eslint": "7.11.0",
"eslint-config-react-app": "5.2.1",
"eslint-plugin-flowtype": "5.2.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-react": "7.21.4",
"eslint-plugin-react-hooks": "4.1.2",
"html-loader": "^0.2.3",
"markdown-loader": "^0.1.2",
"normalize.css": "^3.0.2",
"prettier": "2.1.2",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"react-hot-loader": "^1.1.1",
"style-loader": "^0.8.2",
"url-loader": "^0.5.5",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.6.6"
},
"dependencies": {
"classnames": "^2.2.0"
},
"peerDependencies": {
"react": "^16.8.0"
},
"repository": {
"type": "git",
"url": "https://github.com/signavio/react-scrollbars.git"
}
}