-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
108 lines (108 loc) · 3.06 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "react-redux-universal-boilerplate",
"version": "0.0.0",
"description": "",
"ports": {
"production": {
"node-server": 8080
},
"development": {
"node-server": 3000,
"webpack-hot-server": 3001
}
},
"scripts": {
"build": "rm -fR build/; TARGET=browser webpack --config boilerplate/webpack.config && TARGET=node webpack --config boilerplate/webpack.config && exit 0 || exit 1",
"start": "node --max_old_space_size=250 build/node",
"dev": "rm -fR build/; node boilerplate/start-development"
},
"author": "José Moreira <[email protected]>",
"license": "ISC",
"babel": {
"plugins": [
"transform-decorators-legacy"
],
"presets": [
"es2015",
"stage-0",
"react"
]
},
"dependencies": {
"await-delay": "^1.0.0",
"babel-polyfill": "^6.23.0",
"browser-cookies": "^1.1.0",
"classnames": "^2.2.5",
"compression": "^1.6.2",
"cookie-parser": "1.4.3",
"express": "^4.14.0",
"fbjs": "^0.8.8",
"helmet": "^3.5.0",
"intl": "^1.2.5",
"intl-locales-supported": "^1.0.0",
"is-array": "^1.0.1",
"localforage": "^1.5.0",
"lodash.noop": "^3.0.1",
"morgan": "^1.8.1",
"raf": "^3.3.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-helmet": "^5.0.2",
"react-hot-loader": "^1.3.1",
"react-intl": "^2.2.3",
"react-redux": "^4.4.6",
"react-router": "^2.8.1",
"react-router-redux": "^4.0.5",
"react-side-effect": "^1.1.0",
"redux": "^3.6.0",
"redux-thunk": "1.0.3",
"reformulate": "^1.0.12",
"semantic-ui-react": "^0.68.2"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-eslint": "^7.1.1",
"babel-helpers": "^6.22.0",
"babel-loader": "^6.2.10",
"babel-plugin-check-es2015-constants": "^6.22.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-module-alias": "^1.6.0",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-regenerator": "^6.22.0",
"babel-preset-env": "^1.3.2",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"babel-runtime": "^6.22.0",
"colors": "^1.1.2",
"concurrently": "^2.2.0",
"css-loader": "^0.27.3",
"dsv-loader": "^1.0.3",
"eslint": "^3.17.1",
"eslint-config-esnext": "^1.6.0",
"eslint-config-recommended": "^1.5.0",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-import": "^2.2.0",
"file-loader": "^0.9.0",
"http-proxy": "^1.16.2",
"imagemagick": "^0.1.3",
"ip": "1.1.2",
"json-loader": "0.5.4",
"less": "^2.7.2",
"less-loader": "^3.0.0",
"nodemon": "^1.11.0",
"null-loader": "0.1.1",
"optimize-js": "^1.0.1",
"packer": "0.0.6",
"promise-loader": "^1.0.0",
"react-hot-loader": "^1.3.1",
"script-loader": "^0.7.0",
"sharp": "0.12",
"sharp-loader": "^0.3.3",
"style-loader": "latest",
"url-loader": "0.5.7",
"webpack": "^1.13.2",
"webpack-configurator": "^0.3.1",
"webpack-hot-middleware": "^2.15.0"
}
}