-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 loc) · 2.17 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
{
"name": "react-webpack-startup",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "NODE_ENV=development nodemon index.js",
"dev": "NODE_ENV=development gulp",
"prod": "NODE_ENV=production webpack && NODE_ENV=production gulp build && NODE_ENV=production node index.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/DWboutin/react-webpack-startup.git"
},
"keywords": [
"React",
"Startup",
"Webpack",
"Universal",
"Isomorphic"
],
"author": "Mikael Boutin <mikaelboutin.dw@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/DWboutin/react-webpack-startup/issues"
},
"homepage": "https://github.com/DWboutin/react-webpack-startup#readme",
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.5",
"babel-plugin-module-resolver": "^2.2.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-2": "^6.13.0",
"eslint": "^3.4.0",
"eslint-config-airbnb": "^10.0.1",
"eslint-import-resolver-babel-module": "^2.0.1",
"eslint-loader": "^1.5.0",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^2.2.1",
"eslint-plugin-react": "^6.2.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-concat": "^2.6.0",
"gulp-if": "^2.0.1",
"gulp-image-optimization": "^0.1.3",
"gulp-plumber": "^1.1.0",
"gulp-sass": "^2.3.2",
"gulp-sourcemaps": "^1.6.0",
"gulp-uglify": "^2.0.0",
"nodemon": "^1.10.2",
"proxy-middleware": "^0.15.0",
"react-hot-loader": "^1.3.0",
"url": "^0.11.0",
"url-loader": "^0.5.7",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"express": "^4.14.0",
"intl": "^1.2.4",
"intl-locales-supported": "^1.0.0",
"react": "^15.3.1",
"react-dom": "^15.3.1",
"react-intl": "^2.1.5",
"react-redux": "^4.4.5",
"react-router": "^2.7.0",
"react-router-redux": "^4.0.5",
"redux": "^3.5.2",
"redux-form": "^6.0.2"
}
}