-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
44 lines (44 loc) · 1.12 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
{
"name": "mobx-reactive2015-demo",
"version": "1.0.0",
"description": "Runnable source code of the #GoReactive #mobservable talk",
"scripts": {
"start": "node server.js",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "https://github.com/mobxjs/mobx-reactive2015-demo.git"
},
"keywords": [
"react",
"reactjs",
"reactive-programming",
"mobservable",
"mobx"
],
"author": "Michel Weststrate <mweststrate@gmail.com> (http://github.com/mweststrate)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mobxjs/mobx-reactive2015-demo/issues"
},
"homepage": "http://mobxjs.github.com/mobx",
"devDependencies": {
"babel-core": "^5.4.7",
"babel-eslint": "^3.1.9",
"babel-loader": "^5.1.2",
"eslint-plugin-react": "^2.3.0",
"react-hot-loader": "^2.0.0-alpha-4",
"webpack": "^1.9.6",
"webpack-dev-server": "^1.8.2"
},
"dependencies": {
"mobx": "^2.4.1",
"mobx-react": "^3.5.3",
"mobx-react-devtools": "^4.2.4",
"node-uuid": "^1.4.3",
"react": "^15.0.0",
"react-dom": "^15.0.0",
"react-draggable": "^1.0.1"
}
}