-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
68 lines (68 loc) · 2.04 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
{
"name": "react-stickynode-update",
"version": "1.0.0",
"description": "A performant and comprehensive React sticky component.",
"main": "./lib/index.js",
"module": "./es/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/ahmadHuss/react-stickynode-update.git"
},
"keywords": [
"react",
"ui",
"react-sticky",
"web"
],
"author": "Ahmad Hussnain",
"email": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/ahmadHuss/react-stickynode-update/issues"
},
"homepage": "https://github.com/ahmadHuss/react-stickynode-update#readme",
"peerDependencies": {
"react": "^16.11.0",
"react-dom": "^16.11.0"
},
"dependencies": {
"classnames": "^2.2.6",
"object-assign": "^4.1.1",
"prop-types": "^15.7.2",
"shallowequal": "^1.1.0",
"subscribe-ui-event": "^2.0.5"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-export-default-from": "^7.5.2",
"@babel/plugin-proposal-export-namespace-from": "^7.5.2",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"babel-eslint": "^10.0.3",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.2.0",
"prettier": "^1.18.2",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"rimraf": "^3.0.0",
"rollup": "^1.26.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0"
},
"scripts": {
"clean": "rimraf lib es",
"lint": "eslint --ignore-path .gitignore --fix -- .",
"pretest": "npm run clean && npm run lint",
"build": "rollup -c"
}
}