-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.16 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
{
"name": "baobab-recursive-tree",
"version": "1.0.0",
"description": "An example on how to solve recursive trees with shared references, utilizing React and Baobab.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hscheckenbacher/baobab-recursive-tree.git"
},
"keywords": [
"react",
"baobab",
"recursive",
"tree",
"shared"
],
"author": "Harald Scheckenbacher",
"license": "ISC",
"bugs": {
"url": "https://github.com/hscheckenbacher/baobab-recursive-tree/issues"
},
"homepage": "https://github.com/hscheckenbacher/baobab-recursive-tree#readme",
"devDependencies": {
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babelify": "^7.2.0",
"browserify": "^13.0.0",
"flux": "^2.1.1",
"gulp": "^3.9.1",
"gulp-connect": "^3.2.2",
"gulp-open": "^1.0.0",
"reactify": "^1.1.1",
"vinyl-source-stream": "^1.1.0"
},
"dependencies": {
"baobab": "^2.3.3",
"baobab-react": "^2.1.1",
"lodash": "^4.13.1",
"react": "^15.2.0",
"react-dom": "^15.2.0"
}
}