-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.6 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
{
"name": "react-redux-hmr-ssr",
"version": "1.0.0",
"description": "isomorphic react-redux server-side-rendering hot-reload boilerplate",
"main": "",
"scripts": {
"test": "test",
"lint:eslint": "eslint --ext=.js --ext=.jsx source/client",
"start": "npm run build:dist && cross-env NODE_ENV=production node dist/server/server.config.prod.js",
"dev": "concurrently --kill-others \"npm run start:proxy\" \"npm run start:dev\"",
"start:dev": "webpack-dev-server --open",
"start:proxy": "nodemon source/server/server.config.dev.js",
"build:dist": "npm run build:assets && rm -rf dist/ && babel source/ -d dist/ --copy-files",
"build:assets": "cross-env NODE_ENV=production webpack"
},
"pre-commit": [
"lint:eslint"
],
"engines": {
"node": "8.6.0"
},
"repository": {
"type": "git",
"url": ""
},
"author": "Max Marinich",
"license": "ISC",
"dependencies": {
"autoprefixer": "^7.1.2",
"axios": "^0.18.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-transform-require-ignore": "^0.1.1",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.24.1",
"babel-runtime": "^6.25.0",
"body-parser": "^1.17.2",
"cookie-parser": "^1.4.3",
"copy-webpack-plugin": "^4.5.1",
"cross-env": "^5.0.1",
"css-loader": "^0.28.4",
"csvtojson": "^2.0.3",
"eslint": "^4.3.0",
"eslint-loader": "^1.9.0",
"express": "^4.15.3",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"lodash.debounce": "^4.0.8",
"lodash.intersection": "^4.4.0",
"lodash.intersectionby": "^4.7.0",
"moment": "^2.22.2",
"node-sass": "^4.5.3",
"postcss-loader": "^2.0.6",
"prop-types": "^15.5.10",
"pug": "^2.0.0-rc.2",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-hot-loader": "next",
"react-redux": "^5.0.5",
"react-router-config": "^1.0.0-beta.3",
"react-router-dom": "^4.1.2",
"react-router-redux": "next",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"reset-css": "^2.2.1",
"resolve-url": "^0.2.1",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"styled-components": "^3.3.2",
"url-loader": "^1.0.1",
"webpack": "^3.4.1",
"webpack-merge": "^4.1.0"
},
"devDependencies": {
"concurrently": "^3.5.0",
"nodemon": "^1.11.0",
"pre-commit": "^1.2.2",
"webpack-dev-server": "^2.6.1"
}
}