-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.12 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.12 KB
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
{
"version": "1.0.0",
"private": true,
"author": "Yuri Kuschinsky",
"engines": {
"node": ">=5.0 <7",
"npm": ">=3.3 <4"
},
"dependencies": {
"babel-polyfill": "6.7.4",
"babel-runtime": "6.6.1",
"classnames": "2.2.1",
"history": "^2.1.2",
"humps": "1.1.0",
"react": "15.3.0",
"react-dom": "15.3.0",
"react-redux": "4.4.5",
"react-router": "2.6.1",
"react-select": "1.0.0-beta14",
"redux": "3.3.1",
"redux-api-middleware": "1.0.1",
"redux-logger": "2.6.1",
"redux-thunk": "2.0.1"
},
"devDependencies": {
"autoprefixer": "^6.3.4",
"babel-cli": "^6.6.5",
"babel-eslint": "^6.0.0",
"babel-jest": "^9.0.3",
"babel-loader": "^6.2.4",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-runtime": "^6.6.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-node5": "^11.0.1",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"bluebird": "^3.3.4",
"browser-sync": "^2.11.2",
"css-loader": "^0.23.1",
"del": "^2.2.0",
"enzyme": "^2.2.0",
"eslint": "^2.5.1",
"eslint-config-airbnb": "^6.2.0",
"eslint-loader": "^1.3.0",
"eslint-plugin-react": "^4.2.3",
"file-loader": "^0.8.5",
"gaze": "^1.0.0",
"glob": "^7.0.3",
"html-webpack-plugin": "^2.15.0",
"html-webpack-template": "^5.0.0",
"jest-cli": "^0.9.2",
"jscs": "^2.11.0",
"json-loader": "^0.5.4",
"mkdirp": "^0.5.1",
"ncp": "^2.0.0",
"postcss": "^5.0.19",
"postcss-import": "^8.0.2",
"postcss-loader": "^0.8.2",
"postcss-scss": "^0.1.7",
"precss": "^1.4.0",
"react-addons-test-utils": "^15.0.0-rc.2",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.4",
"redbox-react": "^1.2.2",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.12.15",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.10.0"
},
"babel": {
"presets": [
"react",
"node5",
"stage-0"
]
},
"scripts": {
"start": "babel-node tools/run start",
"build": "babel-node tools/run build"
}
}