-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.2 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": "reactree",
"version": "0.1.0",
"description": "React tree-view",
"main": "index.js",
"scripts": {
"start": "node server.js",
"test": "mocha --compilers js:babel-register --recursive",
"test:watch": "npm run test -- --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/jimliu/reactree.git"
},
"author": "Jim Liu <junminliu@gmail.com> (http://github.com/jimliu)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jimliu/reactree/issues"
},
"homepage": "https://github.com/jimliu/reactree",
"devDependencies": {
"babel-core": "^6.6.5",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"babel-register": "^6.6.5",
"expect.js": "^0.3.1",
"express": "^4.13.4",
"mocha": "^2.4.5",
"webpack": "^1.12.14",
"webpack-dev-middleware": "^1.5.1",
"webpack-hot-middleware": "^2.9.1"
},
"dependencies": {
"classnames": "^2.2.3",
"lodash": "^4.6.1",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"redux": "^3.3.1",
"redux-logger": "^2.6.1",
"redux-thunk": "^1.0.3"
}
}