-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.19 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
{
"name": "react-stickky",
"version": "3.3.0",
"description": "make anything sticky with this react component",
"main": "lib/Sticky.js",
"scripts": {
"prebuild": "rm -rf lib && mkdir lib",
"build": "babel src --out-dir lib",
"test": "echo \\\"Error: no test specified\\\" && exit 0",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ShyamRaj/react-stickky.git"
},
"keywords": [
"react-sticky",
"react-stickky",
"react-affix",
"react",
"sticky",
"affix",
"sticky-header"
],
"author": "Shyam",
"license": "ISC",
"bugs": {
"url": "https://github.com/ShyamRaj/react-stickky/issues"
},
"homepage": "https://github.com/ShyamRaj/react-stickky#readme",
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "^7.13.14",
"@storybook/addon-actions": "^6.2.1",
"@storybook/addon-essentials": "^6.2.1",
"@storybook/addon-links": "^6.2.1",
"@storybook/react": "^6.2.1",
"react-addons-test-utils": "^15.2.1"
},
"dependencies": {
"debounce": "^1.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}