-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.37 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
51
{
"name": "fluxible-koa-example",
"version": "1.3.0",
"description": "A simple example of isomorphic Flux application using Koa, Fluxible, React and React-router",
"main": "start.js",
"scripts": {
"build": "webpack & webpack --config webpack.config.production.js",
"dev": "NODE_ENV=development nodemon start.js -e js,jsx",
"start": "NODE_ENV=production node start.js"
},
"keywords": [
"koa",
"fluxible",
"react",
"react-rouer",
"babel"
],
"dependencies": {
"babel-core": "^6.9.0",
"babel-plugin-transform-class-properties": "^6.9.1",
"babel-preset-es2015-node6": "^0.2.0",
"babel-preset-react": "^6.5.0",
"fluxible": "^1.1.0",
"fluxible-addons-react": "^0.2.8",
"fluxible-plugin-fetchr": "^0.3.0",
"koa": "^2.0.0",
"koa-bodyparser": "^3.1.0",
"koa-logger": "^2.0.0",
"koa-static": "^3.0.0",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"react-router": "^3.0.0-alpha.1",
"serialize-javascript": "^4.0.0"
},
"devDependencies": {
"babel-loader": "^6.2.4",
"babel-preset-es2015-webpack": "^6.4.1",
"json-loader": "^0.5.1",
"nodemon": "^1.9.2",
"webpack": "^2.1.0-beta.7"
},
"author": "hirofumii",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hirofumii/fluxible-koa-example.git"
},
"engines": {
"node": ">= 6.0"
}
}