-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.18 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.18 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "react-tree",
"version": "1.0.0",
"description": "tree component",
"main": "lib/react-tree.js",
"scripts": {
"build": "webpack --config webpack.config.js",
"dev": "webpack --progress --colors --watch",
"docs": "webpack --config webpack.docs.config.js",
"hot": "webpack-dev-server --config webpack.examples.hot.config.js",
"lint": "node_modules/.bin/eslint --ext .jsx,.js src/ examples/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jen-ni/react-tree.git"
},
"author": "OpusCapita (www.opuscapita.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Jen-ni/react-tree/issues"
},
"homepage": "https://github.com/Jen-ni/react-tree#readme",
"peerDependencies": {
"react": "15.4.x",
"react-dom": "15.4.x"
},
"devDependencies": {
"autoprefixer": "^7.1.6",
"babel": "^6.23.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-loader": "^7.1.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"bootstrap-sass": "^3.3.7",
"clean-webpack-plugin": "^0.1.17",
"css-loader": "^0.28.7",
"eslint": "^4.12.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.5.1",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.5",
"html-webpack-plugin": "^2.30.1",
"node-sass": "^4.7.2",
"postcss-flexbugs-fixes": "^3.2.0",
"postcss-loader": "^2.0.9",
"precss": "^2.0.0",
"progress-bar-webpack-plugin": "^1.10.0",
"prop-types": "^15.6.0",
"react": "15.4.x",
"react-dom": "15.4.x",
"react-hot-loader": "^3.1.3",
"react-router": "^3.0.0",
"react-svg-loader": "^2.1.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"url-loader": "^0.6.2",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.9.5",
"webpack-merge": "^4.1.1",
"write-file-webpack-plugin": "^4.2.0"
},
"dependencies": {
"font-awesome": "^4.7.0",
"font-awesome-sass-loader": "^2.0.1",
"rc-tree": "^1.7.9"
}
}