-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
78 lines (78 loc) · 2.64 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
{
"name": "mobx-starter",
"main": "index.js",
"version": "2.0.0",
"author": "Ryan Megidov <[email protected]>",
"description": "Mobx + React + React-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-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-transform-react-jsx": "6.24.1",
"babel-plugin-webpack-alias": "^2.1.2",
"babel-register": "6.26.0",
"chokidar": "^1.7.0",
"cross-env": "5.0.5",
"css-loader": "0.28.7",
"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",
"isomorphic-fetch": "2.2.1",
"jwt-simple": "0.5.1",
"koa": "^2.3.0",
"koa-better-body": "^3.0.4",
"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",
"mobx-react": "4.2.2",
"mongoose": "4.11.10",
"node-sass": "4.5.3",
"path-to-regexp-es6": "0.0.2",
"promise-polyfill": "^6.0.2",
"prop-types": "^15.5.10",
"react": "15.6.1",
"react-dom": "15.6.1",
"react-router": "4.2.0",
"react-router-config": "^1.0.0-beta.4",
"react-router-dom": "^4.2.2",
"sass-loader": "6.0.6",
"serve-favicon": "2.4.3",
"style-loader": "0.18.2",
"webpack": "^3.5.6"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"eslint": "^4.6.1",
"eslint-plugin-react": "^7.3.0",
"mobx-logger": "^0.6.0",
"nodemon": "1.12.0",
"react-hot-loader": "3.0.0-beta.6",
"webpack-dev-server": "2.7.1"
}
}