-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
86 lines (86 loc) · 2.94 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
{
"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": "node index.js --dev",
"prod": "node index.js --prod"
},
"dependencies": {
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-inferno": "3.2.0",
"babel-plugin-transform-async-to-generator": "6.24.1",
"babel-plugin-transform-class-properties": "6.24.1",
"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.26.0",
"babel-plugin-transform-es2015-classes": "6.24.1",
"babel-plugin-transform-es2015-computed-properties": "6.24.1",
"babel-plugin-transform-es2015-destructuring": "6.23.0",
"babel-plugin-transform-es2015-literals": "6.22.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-es2015-parameters": "6.24.1",
"babel-plugin-transform-es2015-shorthand-properties": "6.24.1",
"babel-plugin-transform-es2015-spread": "6.22.0",
"babel-plugin-transform-es2015-template-literals": "6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-webpack-alias": "^2.1.2",
"babel-register": "^6.26.0",
"babili-webpack-plugin": "^0.1.2",
"chokidar": "^1.7.0",
"classnames": "^2.2.5",
"css-loader": "^0.28.7",
"debug": "^3.0.1",
"extract-text-webpack-plugin": "^3.0.0",
"fast-async": "^6.3.0",
"file-loader": "0.11.2",
"fs-extra-promise": "^1.0.1",
"history": "^4.7.2",
"inferno": "^3.9.0",
"inferno-component": "^3.9.0",
"inferno-create-class": "^3.9.0",
"inferno-create-element": "^3.9.0",
"inferno-mobx": "^3.9.0",
"inferno-router": "^3.9.0",
"inferno-server": "^3.9.0",
"isomorphic-fetch": "2.2.1",
"json-loader": "^0.5.7",
"jwt-simple": "^0.5.1",
"koa": "^2.3.0",
"koa-better-body": "^3.0.4",
"koa-compress": "^2.0.0",
"koa-convert": "^1.2.0",
"koa-favicon": "^2.0.0",
"koa-mount": "^3.0.0",
"koa-router": "^7.2.1",
"koa-static": "^4.0.1",
"lodash": "^4.17.4",
"mobx": "^3.2.2",
"mongoose": "^4.11.12",
"node-sass": "4.5.3",
"promise-polyfill": "6.0.2",
"sass-loader": "6.0.6",
"serve-favicon": "2.4.3",
"style-loader": "0.18.2",
"webpack": "^3.6.0"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"cross-env": "5.0.5",
"eslint": "^4.6.1",
"eslint-plugin-inferno": "^7.0.1",
"inferno-devtools": "3.9.0",
"jsonfile": "^3.0.1",
"mobx-logger": "^0.6.0",
"nodemon": "1.12.0",
"sw-precache-webpack-plugin": "^0.11.4",
"webpack-dev-server": "^2.8.2",
"webpack-manifest-plugin": "^1.3.1"
}
}