forked from nightwolfz/inferno-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.65 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
{
"name": "inferno-starter",
"main": "index.js",
"version": "0.6.0",
"author": "Ryan Megidov <[email protected]>",
"description": "Mobx + Inferno + Inferno-router + Webpack hot-reload starter kit",
"license": "MIT",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon index.js",
"prod": "cross-env NODE_ENV=production node index.js"
},
"dependencies": {
"babel-loader": "6.2.10",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-inferno": "1.7.0",
"babel-plugin-transform-async-to-generator": "6.22.0",
"babel-plugin-transform-class-properties": "6.22.0",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-es2015-arrow-functions": "6.22.0",
"babel-plugin-transform-es2015-block-scoped-functions": "6.22.0",
"babel-plugin-transform-es2015-block-scoping": "6.22.0",
"babel-plugin-transform-es2015-classes": "6.22.0",
"babel-plugin-transform-es2015-computed-properties": "6.22.0",
"babel-plugin-transform-es2015-destructuring": "6.22.0",
"babel-plugin-transform-es2015-literals": "6.22.0",
"babel-plugin-transform-es2015-modules-commonjs": "6.22.0",
"babel-plugin-transform-es2015-parameters": "6.22.0",
"babel-plugin-transform-es2015-shorthand-properties": "6.22.0",
"babel-plugin-transform-es2015-spread": "6.22.0",
"babel-plugin-transform-es2015-template-literals": "6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-register": "6.22.0",
"classnames": "^2.2.5",
"css-loader": "0.26.1",
"debug": "^2.6.0",
"extract-text-webpack-plugin": "^2.0.0-beta.4",
"fast-async": "6.2.0",
"file-loader": "0.9.0",
"history": "^4.5.1",
"inferno": "1.2.2",
"inferno-component": "1.2.2",
"inferno-create-class": "1.2.2",
"inferno-create-element": "1.2.2",
"inferno-mobx": "1.2.2",
"inferno-router": "1.2.2",
"inferno-server": "1.2.2",
"isomorphic-fetch": "2.2.1",
"json-loader": "0.5.4",
"jwt-simple": "^0.5.1",
"koa": "^2.0.0-alpha.7",
"koa-better-body": "^3.0.2",
"koa-compress": "^2.0.0",
"koa-convert": "^1.2.0",
"koa-favicon": "^2.0.0",
"koa-mount": "^2.0.0",
"koa-router": "^7.1.0",
"koa-static": "^2.0.0",
"mobx": "3.0.2",
"mongoose": "4.7.8",
"node-sass": "4.3.0",
"promise-polyfill": "6.0.2",
"sass-loader": "4.1.1",
"serve-favicon": "2.3.2",
"style-loader": "0.13.1",
"webpack": "2.2.0"
},
"devDependencies": {
"inferno-devtools": "1.2.2",
"babel-eslint": "^7.1.1",
"cross-env": "3.1.4",
"eslint": "^3.14.1",
"nodemon": "1.11.0",
"webpack-dev-server": "2.2.0"
}
}