This repository has been archived by the owner on Oct 2, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
77 lines (77 loc) · 2.28 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
{
"name": "habr-app",
"version": "1.0.0",
"description": "Simple universal / isomorphic React application for habrahabr.ru",
"main": "index.js",
"scripts": {
"build": "cross-env NODE_ENV='production' webpack -p",
"webpack-devserver": "webpack-dev-server --debug --hot --devtool eval-source-map --output-pathinfo --watch --colors --inline --content-base public --port 8050 --host 0.0.0.0",
"nodemon": "cross-env NODE_PATH=./src nodemon ./server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yury-dymov/habr-app.git"
},
"keywords": [
"React",
"universal",
"isomorphic",
"redux",
"redux-oauth",
"babel",
"eslint"
],
"author": "Yuri Dymov",
"license": "MIT",
"bugs": {
"url": "https://github.com/yury-dymov/habr-app/issues"
},
"homepage": "https://github.com/yury-dymov/habr-app#readme",
"dependencies": {
"babel-core": "^6.14.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"bluebird": "^3.4.1",
"cookie-parser": "^1.4.3",
"express": "^4.14.0",
"react": "^15.3.1",
"react-bootstrap": "^0.30.3",
"react-bootstrap-button-loader": "^1.0.7",
"react-dom": "^15.3.1",
"react-redux": "^4.4.5",
"react-router": "^2.8.1",
"react-router-bootstrap": "^0.23.1",
"redux": "^3.6.0",
"redux-oauth": "^2.0.5",
"redux-thunk": "^2.1.0"
},
"devDependencies": {
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.5",
"clean-webpack-plugin": "^0.1.10",
"cross-env": "^5.2.0",
"css-loader": "^0.24.0",
"eslint": "^3.3.1",
"eslint-loader": "^1.5.0",
"eslint-plugin-react": "^6.1.2",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"html-loader": "^0.4.3",
"json-loader": "^0.5.4",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"nodemon": "^1.10.2",
"postcss-loader": "^0.10.1",
"react-hot-loader": "^1.3.0",
"redux-devtools": "^3.3.1",
"redux-devtools-dock-monitor": "^1.1.1",
"redux-devtools-log-monitor": "^1.0.11",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.15.0"
}
}