-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.35 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.35 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
51
52
53
{
"name": "react-tree-virtualized",
"version": "1.1.0-beta.0",
"description": "A react tree component which can handle huge number of nodes using builtin virtualisation",
"main": "./lib/tree.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Anuj16/react-tree-virtualized.git"
},
"keywords": [
"react",
"tree",
"virtualized",
"component",
"scalable"
],
"author": "kumarshivratna@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/Anuj16/react-tree-virtualized/issues"
},
"homepage": "https://github.com/Anuj16/react-tree-virtualized#readme",
"peerDependencies": {
"prop-types": "15.6.2",
"react": "16.5.2",
"react-dom": "16.5.2"
},
"dependencies": {
"classnames": "2.2.6",
"lodash": "4.17.11",
"shortid": "2.2.13"
},
"devDependencies": {
"babel-core": "6.21.0",
"babel-loader": "7.1.4",
"babel-preset-env": "1.6.1",
"babel-preset-react": "6.16.0",
"babel-preset-stage-0": "6.24.1",
"extract-text-webpack-plugin": "3.0.2",
"file-loader": "2.0.0",
"path": "0.12.7",
"prop-types": "15.6.0",
"react": "16.5.2",
"react-dom": "16.5.2",
"url-loader": "1.1.2",
"webpack": "4.20.2",
"webpack-cli": "3.1.1"
}
}