forked from iam4x/isomorphic-flux-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
147 lines (147 loc) · 3.47 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"name": "isomorphic-flux-boilerplate",
"version": "0.2.0",
"description": "An ES7 isomorphic Flux/ReactJS boilerplate",
"main": "server/index.js",
"scripts": {
"build": "./node_modules/.bin/webpack --progress --stats --config ./webpack/prod.config.js",
"dev": "node --harmony ./webpack/dev-server.js",
"test": "./node_modules/.bin/karma start --single-run",
"postinstall": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/iam4x/isomorphic-flux-boilerplate.git"
},
"homepage": "https://github.com/iam4x/isomorphic-flux-boilerplate",
"bugs": "https://github.com/iam4x/isomorphic-flux-boilerplate/issues",
"author": "iam4x",
"license": "MIT",
"dependencies": {
"alt": "^0.16.10",
"blocked": "^1.1.0",
"classnames": "^2.0.0",
"cookies-js": "^1.2.1",
"debug": "^2.1.3",
"intl": "^0.1.4",
"iso": "^4.0.2",
"koa": "^0.21.0",
"koa-cash": "^1.0.1",
"koa-compressor": "^1.0.3",
"koa-conditional-get": "^1.0.2",
"koa-etag": "^2.0.0",
"koa-favicon": "^1.2.0",
"koa-hbs": "^0.7.0",
"koa-helmet": "^0.1.0",
"koa-logger": "^1.2.2",
"koa-mount": "^1.3.0",
"koa-proxy": "^0.2.0",
"koa-response-time": "^1.0.2",
"koa-static-cache": "^3.1.0",
"lodash": "^3.6.0",
"lru-cache": "^2.6.2",
"modularized-normalize-scss": "git://github.com/hail2u/normalize.scss.git",
"react": "^0.13.1",
"react-intl": "^1.2.0",
"react-router": "^0.13.2",
"superagent": "^1.1.0"
},
"devDependencies": {
"autoprefixer-loader": "^2.0.0",
"babel": "^5.5.8",
"babel-core": "^5.5.8",
"babel-eslint": "^3.1.9",
"babel-loader": "^5.0.0",
"browser-sync": "^2.7.11",
"chai": "^3.0.0",
"css-loader": "^0.14.5",
"del": "^1.1.1",
"dev-ip": "^1.0.1",
"eslint": "^0.24.0",
"eslint-config-future": "^2.1.1",
"eslint-loader": "^0.14.0",
"eslint-plugin-react": "^2.5.2",
"esprima-fb": "^15001.1.0-dev-harmony-fb",
"extract-text-webpack-plugin": "^0.8.0",
"file-loader": "^0.8.1",
"image-webpack-loader": "^1.4.0",
"imagemin": "^3.1.0",
"isparta-loader": "^0.2.0",
"json-loader": "^0.5.1",
"karma": "^0.12.31",
"karma-chrome-launcher": "^0.2.0",
"karma-cli": "^0.1.0",
"karma-coverage": "^0.4.2",
"karma-coveralls": "^1.0.1",
"karma-firefox-launcher": "^0.1.4",
"karma-mocha": "^0.2.0",
"karma-sourcemap-loader": "^0.3.4",
"karma-webpack": "^1.5.0",
"mocha": "^2.2.1",
"node-sass": "^3.2.0",
"node-watch": "^0.3.4",
"object-assign": "^2.0.0",
"react-hot-loader": "^1.1.4",
"sass-loader": "^1.0.1",
"style-loader": "^0.12.1",
"url-loader": "^0.5.5",
"webpack": "^1.10.0",
"webpack-dev-server": "^1.9.0"
},
"tags": [
"react",
"flux",
"alt",
"iso",
"isomorphic",
"spa",
"ssr",
"koa",
"webpack",
"jsx",
"es6",
"babel",
"sass",
"scss",
"eslint",
"react-router",
"react-hot-loader",
"hot-loader",
"async",
"server",
"generator",
"es7",
"i18n",
"intl"
],
"keywords": [
"react",
"flux",
"alt",
"iso",
"isomorphic",
"spa",
"ssr",
"koa",
"webpack",
"jsx",
"es6",
"babel",
"sass",
"scss",
"eslint",
"react-router",
"react-hot-loader",
"hot-loader",
"async",
"server",
"generator",
"es7",
"i18n",
"intl"
],
"engines": {
"iojs": "^2.3.0",
"nodejs": "^0.12"
}
}