forked from mweststrate/mobx-todomvc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.4 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
48
49
50
{
"name": "mobx-react-boilerplate",
"version": "1.0.0",
"description": "Boilerplate for MobX + React project with JSX, ES6 compilation and hot code reloading",
"scripts": {
"build": "NODE_ENV=production webpack --config webpack.config.production.js",
"start": "node server.js",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "https://github.com/mobxjs/mobx-react-boilerplate.git"
},
"keywords": [
"react",
"reactjs",
"boilerplate",
"mobx",
"starter-kit"
],
"author": "Michel Weststrate <[email protected]> (http://github.com/mweststrate)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mobxjs/mobx/issues"
},
"homepage": "http://mobxjs.github.com/mobx",
"devDependencies": {
"babel-core": "^6.3.26",
"babel-loader": "^6.2.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-1": "^6.3.13",
"eslint-plugin-react": "^2.3.0",
"raw-loader": "^0.5.1",
"react-addons-perf": "^0.14.7",
"style-loader": "^0.13.1",
"todomvc-app-css": "^2.0.4",
"webpack": "^1.9.6",
"webpack-dev-server": "^1.8.2"
},
"dependencies": {
"classnames": "^2.2.3",
"mobx": "^2.1.1",
"mobx-react": "^3.0.3",
"mobx-react-devtools": "^4.0.0",
"react": "^0.14.0",
"react-dom": "^0.14.0"
}
}