-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.1 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
{
"name": "kd-rsp",
"version": "0.0.1",
"description": "KD simple react starter pack",
"main": "server.js",
"repository": {
"type": "git",
"url": "https://github.com/denysovkos/RSP.git"
},
"keywords": [
"react",
"express",
"routing",
"server",
"redux"
],
"author": "Kostiantyn Denysov <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/denysovkos/RSP",
"scripts": {
"start": "node server",
"start-prod": "npm run build && NODE_ENV=production PORT=3000 node server",
"build": "cross-env NODE_ENV=production webpack --config ./webpack.production.config.js --progress",
"test": "eslint app"
},
"dependencies": {
"axios": "^0.16.2",
"babel-core": "^6.25.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"cross-env": "^5.0.1",
"del": "^3.0.0",
"es6-promise": "^4.1.1",
"express": "^4.15.3",
"history": "^4.6.3",
"html-webpack-plugin": "^2.30.1",
"isomorphic-fetch": "^2.2.1",
"jwt-decode": "^2.2.0",
"lodash": "^4.17.4",
"normalize.css": "^7.0.0",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-helmet": "^5.1.3",
"react-redux": "^5.0.5",
"react-router": "^3.0.5",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"styled-components": "^2.1.1",
"webpack": "^3.4.1",
"webpack-dev-middleware": "^1.12.0",
"webpack-hot-middleware": "^2.18.2"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-object-assign": "^6.22.0",
"css-loader": "^0.28.4",
"eslint": "^4.3.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.1.0",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"node-sass": "^4.5.3",
"react-transform-hmr": "^1.0.4",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"webpack": "^3.4.1"
}
}