-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.22 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
{
"name": "react-simple-tree",
"version": "1.0.0",
"description": "React Simple Tree",
"author": "Jeff Kwon",
"license": "ISC",
"main": "build/react-simple-tree.js",
"directories": {
"build": "build"
},
"scripts": {
"build-docs": "webpack --config webpack.config.dev.js",
"build": "webpack --config webpack.config.prod.js",
"start": "webpack-dev-server --open --config webpack.config.js --port 3000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jtkwon/react-simple-tree.git"
},
"keywords": [
"react",
"tree"
],
"bugs": {
"url": "https://github.com/jtkwon/react-simple-tree/issues"
},
"homepage": "https://jtkwon.github.io/react-simple-tree/",
"dependencies": {
"axios": "^0.19.0",
"react": "^16.9.0",
"react-dom": "^16.9.0"
},
"devDependencies": {
"@babel/core": "7.5.5",
"@babel/preset-env": "7.5.5",
"@babel/preset-react": "7.0.0",
"babel-loader": "8.0.6",
"clean-webpack-plugin": "3.0.0",
"css-loader": "3.2.0",
"html-webpack-plugin": "3.2.0",
"html-webpack-root-plugin": "0.10.0",
"style-loader": "1.0.0",
"webpack": "4.39.2",
"webpack-cli": "3.3.7",
"webpack-dev-server": "3.8.0"
}
}