forked from cosmicjs/cosmicapp-voting-app
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.52 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
{
"name": "easy-mobx-example",
"version": "1.0.0",
"description": "Easy Example for MobX + React. Includes hot code reloading in development mode and minification in production mode. Also includes a demonstration of how to hook up a CMS API and do database calls and loading states.",
"scripts": {
"development": "NODE_ENV=development node server-dev.js",
"start": "NODE_ENV=production webpack -p; NODE_ENV=production node server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/tonyspiro/easy-mobx-example.git"
},
"keywords": [
"react",
"reactjs",
"mobx",
"easy-example"
],
"author": "Tony Spiro <tspiro@tonyspiro.com> (http://github.com/tonyspiro)",
"license": "MIT",
"homepage": "http://tonyspiro.com",
"devDependencies": {
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"babel-core": "^6.10.4",
"babel-loader": "^6.2.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"cosmicjs": "^2.1.2",
"express": "^4.14.0",
"hogan-express": "^0.5.2",
"lodash": "^4.14.2",
"mobx": "^2.2.2",
"mobx-react": "^3.3.1",
"mobx-react-devtools": "^4.2.0",
"react": "^15.1.0",
"react-bootstrap": "^0.30.2",
"react-dom": "^15.1.0",
"react-hot-loader": "^3.0.0-beta.2",
"react-router": "^2.6.1",
"react-router-bootstrap": "^0.23.1",
"shorti": "^1.1.6",
"slug": "^0.9.1",
"webpack": "^1.13.1"
}
}