-
Notifications
You must be signed in to change notification settings - Fork 85
/
package.json
93 lines (93 loc) · 2.32 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"main": "app/server-bundle",
"license": "MIT",
"author": {
"name": "Oleg Akbarov",
"email": "[email protected]",
"url": "https://twitter.com/olegakbarov"
},
"contributors": [
{
"name": "Sergey Slipchenko",
"email": "[email protected]",
"url": "https://twitter.com/faergeek"
}
],
"repository": {
"type": "git",
"url": "[email protected]:olegakbarov/redux-blog-example.git"
},
"scripts": {
"dev": "debug=* NODE_ENV=development node index.js"
},
"ava": {
"files": [
"test/**/*.spec.js"
],
"source": [
"src/**/*.{js,jsx}"
],
"concurrency": 5,
"require": [
"babel-core/register",
"babel-polyfill",
"ignore-styles"
],
"babel": {
"babelrc": true,
"presets": [
"react",
"es2017",
"es2016",
"es2015"
]
}
},
"dependencies": {
"axios": "^0.15.3",
"babel-runtime": "^6.20.0",
"body-parser": "^1.12.4",
"bunyan": "^1.8.9",
"bunyan-prettystream": "^0.1.3",
"cookie-parser": "^1.4.3",
"dotenv": "^4.0.0",
"express": "^4.12.4",
"extract-text-webpack-plugin": "^1.0.1",
"key-mirror": "^1.0.0",
"lodash": "^4.17.3",
"normalize.css": "^5.0.0",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-hot-loader": "^1.3.1",
"react-redux": "^5.0.1",
"react-router": "^4.0.0",
"react-router-dom": "^4.0.0",
"redux": "^3.6.0",
"redux-logger": "^2.7.4",
"redux-thunk": "^2.1.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.4.1",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-es2016": "^6.22.0",
"babel-preset-es2017": "^6.22.0",
"babel-preset-react": "^6.23.0",
"css-loader": "^0.26.1",
"extract-text-webpack-plugin": "^1.0.1",
"ignore-loader": "^0.1.2",
"normalize.css": "^5.0.0",
"react-hot-loader": "^1.2.7",
"style-loader": "^0.13.1",
"webpack": "^2.3.3",
"webpack-dev-middleware": "^1.10.1",
"webpack-hot-middleware": "^2.18.0",
"webpack-hot-server-middleware": "0.0.6",
"webpack-node-externals": "^1.5.4"
}
}