-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
51 lines (51 loc) · 1.57 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
{
"name": "mobx-contact-list",
"version": "0.0.1",
"description": "MobX sample project",
"repository": {
"type": "git",
"url": "https://github.com/mweststrate/mobx-contact-list.git"
},
"scripts": {
"start": "webpack-dev-server --config webpack-dev-server.config.js --progress --inline --colors",
"build": "webpack --config webpack-production.config.js --progress --colors"
},
"private": true,
"devDependencies": {
"babel-core": "^6.3.26",
"babel-eslint": "^5.0.0-beta6",
"babel-loader": "^6.2.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.5.0",
"babel-runtime": "^6.3.19",
"eslint": "^2.12.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-loader": "^1.1.1",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^1.4.2",
"eslint-plugin-react": "^5.1.1",
"eslint-plugin-standard": "^1.3.2",
"estraverse-fb": "^1.3.1",
"html-webpack-plugin": "^2.7.2",
"react-hot-loader": "^1.3.0",
"transfer-webpack-plugin": "^0.1.4",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.14.0"
},
"dependencies": {
"format-number-with-string": "0.0.2",
"material-ui": "0.15.0-alpha.1",
"mobx": "^2.2.0",
"mobx-react": "^3.3.0",
"mobx-react-devtools": "^4.2.0",
"moment": "^2.13.0",
"node-uuid": "^1.4.7",
"react": "0.14.3",
"react-dom": "0.14.3",
"react-hot-loader": "^2.0.0-alpha-4",
"react-tap-event-plugin": "^0.2.1",
"superagent": "^1.8.3"
}
}