-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.3 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
{
"name": "mobx-architecture",
"version": "0.0.0",
"private": true,
"main": "server.js",
"scripts": {
"start": "node server",
"build": "webpack --config webpack.production.js --progress && npm run clean && mv _dist dist",
"clean": "rimraf dist"
},
"devDependencies": {
"@ersinfotech/merge": "1.0.0",
"babel-core": "6.4.5",
"babel-eslint": "5.0.0-beta6",
"babel-loader": "6.2.1",
"babel-plugin-lodash": "2.0.1",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-runtime": "6.3.13",
"babel-preset-es2015": "6.3.13",
"babel-preset-react": "6.3.13",
"babel-preset-stage-0": "6.3.13",
"babel-runtime": "6.3.19",
"css-loader": "0.15.5",
"eslint": "1.10.3",
"eslint-plugin-babel": "3.0.0",
"eslint-plugin-react": "3.13.1",
"express": "4.13.3",
"extract-text-webpack-plugin": "0.8.2",
"file-loader": "0.8.4",
"html-webpack-plugin": "2.0.3",
"rimraf": "2.4.3",
"style-loader": "0.12.3",
"webpack": "1.12.12",
"webpack-dev-middleware": "1.5.1",
"webpack-hot-middleware": "2.6.4"
},
"dependencies": {
"lodash": "4.13.1",
"mobx": "2.4.0",
"mobx-react": "3.5.1",
"mobx-react-devtools": "4.2.3",
"react": "15.2.1",
"react-dom": "15.2.1",
"superagent": "2.1.0"
}
}