-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.36 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.36 KB
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
{
"name": "react-scrolltop-button",
"version": "0.1.9",
"description": "A reusable, customizable scroll-to-top React component",
"main": "lib/index.js",
"scripts": {
"lib": "babel src/lib -d lib --presets minify",
"lib:watch": "babel src/lib -w -d lib",
"docs": "cd docs/ && gatsby develop",
"docs:prod": "cd docs && npm run deploy"
},
"keywords": [
"react",
"scroll",
"scroll to top",
"button"
],
"license": "MIT",
"peerDependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1",
"styled-components": "^5.2.1"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.4",
"babel-preset-minify": "^0.4.3",
"css-loader": "^5.1.0",
"html-webpack-plugin": "^2.30.1",
"prop-types": "^15.6.2",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"style-loader": "^0.19.1",
"styled-components": "^5.2.1",
"webpack": "^5.24.2"
},
"author": "Grayson Hicks <graysonhicks@gmail.com>",
"homepage": "https://github.com/graysonhicks/react-scrolltop-button",
"repository": {
"type": "git",
"url": "git@github.com:graysonhicks/react-scrolltop-button.git"
},
"dependencies": {
"react-icons": "^2.2.7"
}
}