-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.47 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
{
"name": "react-resize-context",
"version": "3.0.0",
"description": "A high performance React component for responding to resize event",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rm -rf ./dist && tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LeetCode-OpenSource/react-resize-context.git"
},
"keywords": [
"react",
"resize",
"detector"
],
"bugs": {
"url": "https://github.com/LeetCode-OpenSource/react-resize-context/issues"
},
"homepage": "https://github.com/LeetCode-OpenSource/react-resize-context#readme",
"author": "LeetCode front-end team",
"license": "MIT",
"devDependencies": {
"@types/element-resize-detector": "^1.1.0",
"@types/lodash": "^4.14.115",
"@types/prop-types": "^15.5.4",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/shallowequal": "^1.1.1",
"prop-types": "^15.6.2",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"tslib": "^2.0.0",
"tslint": "^5.11.0",
"tslint-eslint-rules": "^5.3.1",
"tslint-react": "^4.1.0",
"tslint-sonarts": "^1.7.0",
"typescript": "^3.1.6"
},
"dependencies": {
"element-resize-detector": "^1.1.14",
"fastdom": "^1.0.9",
"lodash": "^4.17.10",
"shallowequal": "^1.1.0"
},
"peerDependencies": {
"prop-types": "^15.6.2",
"react": "^16.8.0",
"react-dom": "^16.8.0"
}
}