forked from rommguy/react-custom-scroll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.2 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
{
"name": "react-custom-scroll",
"version": "4.2.3",
"description": "An easily designable, cross browser (!!), custom scroll with ReactJS Animations and scroll rate **exactly** like native scroll",
"main": "index",
"scripts": {
"test": "karma start --single-run",
"sassex": "node-sass example/main.scss | postcss --use autoprefixer -b 'last 2 versions' > example/styles.css",
"lint": "eslint ./src && eslint ./example/firstComp",
"example-sass": "npm run sassex",
"build": "npm run lint && webpack",
"develop": "webpack --watch --config webpack.dev.js"
},
"repository": {
"type": "git",
"url": "[email protected]:rommguy/react-custom-scroll.git"
},
"author": "Guy Romm",
"license": "MIT",
"bugs": {
"url": "https://github.com/rommguy/react-custom-scroll/issues"
},
"homepage": "https://github.com/rommguy/react-custom-scroll#readme",
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@babel/runtime": "^7.8.4",
"@types/react-dom": "^16.9.5",
"autoprefixer": "^9.7.4",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"css-loader": "^5.2.4",
"eslint": "^6.8.0",
"eslint-plugin-lodash": "^6.0.0",
"eslint-plugin-react": "^7.18.3",
"jasmine": "^3.5.0",
"jasmine-core": "^3.5.0",
"karma": "^6.2.3",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^2.1.0",
"karma-jasmine": "^3.1.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^5.0.0",
"lodash": "^4.17.21",
"mini-css-extract-plugin": "^1.6.0",
"node-sass": "^4.13.1",
"postcss-cli": "^7.1.0",
"prettier": "^2.3.0",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"sass-loader": "^11.1.1",
"style-loader": "^1.3.0",
"webpack": "^5.37.0",
"webpack-cli": "^4.7.0"
},
"peerDependencies": {
"prop-types": "*",
"react": "*",
"react-dom": "*"
},
"keywords": [
"react",
"react-custom-scroll",
"react-component",
"customscroll",
"custom-scroll",
"ui component",
"ui",
"component"
],
"dependencies": {}
}