forked from nightwolfz/mobx-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.35 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
{
"name": "mobx-starter",
"main": "index.js",
"version": "0.1.0",
"author": "Ryan Megidov <[email protected]>",
"description": "Mobx + React + React-router + Webpack hot-reload starter kit",
"license": "MIT",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development node ./index.js",
"prod": "cross-env NODE_ENV=production node ./index.js",
"memory": "node --expose-gc ./index.js -m"
},
"dependencies": {
"babel-loader": "6.2.4",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-transform-async-to-module-method": "6.8.0",
"babel-plugin-transform-class-properties": "6.10.2",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-es2015-arrow-functions": "6.8.0",
"babel-plugin-transform-es2015-block-scoped-functions": "6.8.0",
"babel-plugin-transform-es2015-block-scoping": "6.10.1",
"babel-plugin-transform-es2015-classes": "6.9.0",
"babel-plugin-transform-es2015-computed-properties": "6.8.0",
"babel-plugin-transform-es2015-destructuring": "6.9.0",
"babel-plugin-transform-es2015-literals": "6.8.0",
"babel-plugin-transform-es2015-modules-commonjs": "6.10.3",
"babel-plugin-transform-es2015-parameters": "6.9.0",
"babel-plugin-transform-es2015-shorthand-properties": "6.8.0",
"babel-plugin-transform-es2015-spread": "6.8.0",
"babel-plugin-transform-es2015-template-literals": "6.8.0",
"babel-plugin-transform-react-jsx": "6.8.0",
"babel-register": "6.9.0",
"bluebird": "3.4.1",
"body-parser": "1.15.2",
"compression": "^1.6.2",
"connect-mongo": "^1.2.1",
"cross-env": "^1.0.8",
"css-loader": "0.23.1",
"express": "4.14.0",
"express-session": "1.14.0",
"extract-text-webpack-plugin": "1.0.1",
"fast-async": "6.0.22",
"file-loader": "0.9.0",
"isomorphic-fetch": "2.2.1",
"json-loader": "0.5.4",
"lodash": "4.13.1",
"min": "^0.1.15",
"mobx": "2.3.3",
"mobx-connect": "0.1.1",
"mongoose": "4.5.3",
"node-sass": "3.8.0",
"passport": "0.3.2",
"passport-local": "^1.0.0",
"react": "15.2.0",
"react-dom": "15.2.0",
"react-router": "2.5.2",
"request": "2.72.0",
"sass-loader": "4.0.0",
"serve-favicon": "2.3.0",
"style-loader": "0.13.1",
"webpack": "2.1.0-beta.14"
},
"devDependencies": {
"webpack-dev-server": "2.1.0-beta.0"
}
}