-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathpackage.json
43 lines (43 loc) · 1.08 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
{
"name": "react-treeview-mui",
"version": "0.2.0",
"description": "React Component for treeviews that can use material-ui",
"main": "./src/index.js",
"keywords": [
"react",
"react-component",
"material",
"design",
"material-ui",
"treeview",
"tree"
],
"author": "Jin Yoo",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"eslint": "^4.19.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.10.0"
},
"dependencies": {
"@material-ui/core": "^1.0.0",
"@material-ui/icons": "^1.0.0",
"prop-types": "^15.5.10",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-scripts": "^1.1.5",
"react-transition-group": "^1.1.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"babel-build": "babel src/es2015 --out-dir src",
"prepublish": "npm run babel-build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"lint": "eslint src"
}
}