forked from acdlite/flummox-isomorphic-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.27 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
52
53
54
{
"name": "flummox-isomorphic-demo",
"version": "1.0.1",
"description": "Demo of how to create isomorphic apps using Flummox and react-router",
"main": "lib/server/index.js",
"scripts": {
"prestart": "make build",
"start": "node --harmony lib/server"
},
"engines": {
"node": ">= 0.12.0",
"iojs": ">= 1.0.0"
},
"engineStrict": true,
"keywords": [
"flummox",
"flux",
"react",
"es6",
"react-router",
"koa"
],
"author": "Andrew Clark <[email protected]>",
"license": "ISC",
"dependencies": {
"ejs": "^2.3.1",
"flummox": "^3.5.1",
"immutable": "^3.7.2",
"isomorphic-fetch": "^2.0.2",
"koa": "^0.19.1",
"koa-static": "^1.4.9",
"koa-views": "^3.0.0",
"react": "^0.13.2",
"react-document-title": "^1.0.2",
"react-router": "^0.13.2"
},
"devDependencies": {
"autoprefixer": "^5.1.1",
"babel": "^5.1.10",
"babel-core": "^5.1.10",
"babel-eslint": "^3.0.1",
"babel-loader": "^5.0.0",
"clean-css": "^3.2.0",
"css-loader": "^0.10.1",
"eslint": "^0.19.0",
"nodemon": "^1.3.7",
"react-hot-loader": "^1.2.4",
"source-map-support": "^0.2.10",
"style-loader": "^0.10.2",
"watch": "^0.16.0",
"webpack": "^1.8.5",
"webpack-dev-server": "^1.7.0"
}
}