-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·87 lines (87 loc) · 2.83 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
{
"name": "starter-react",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "gulp iconfont && cross-env NODE_ENV=development webpack-dev-server --config build/webpack.config.js --progress --open & gulp modernizrDev & gulp watch",
"build:staging": "gulp iconfont && cross-env NODE_ENV=staging webpack --config build/webpack.config.js --progress && gulp modernizrProd && gulp imagemin && gulp useref",
"build": "gulp iconfont && cross-env NODE_ENV=production webpack --config build/webpack.config.js --progress && gulp modernizrProd && gulp imagemin && gulp useref",
"deploy:staging": "npm run build:staging && gulp deploy",
"deploy": "npm run build && gulp deploy"
},
"keywords": ["Starter React", "Redux", "React-Router"],
"author": {
"name": "Laurent Menu",
"email": "[email protected]",
"url" : "https://www.lmenu.fr"
},
"contributors": [
{
"name": "Loïc Lalevée",
"email": "[email protected]"
}
],
"license": "ISC",
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-runtime": "^6.23.0",
"clean-webpack-plugin": "^0.1.16",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "^5.0.1",
"css-loader": "^0.28.4",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"gulp": "^3.9.1",
"gulp-gh-pages": "^0.5.4",
"gulp-iconfont": "^9.0.0",
"gulp-if": "^2.0.2",
"gulp-imagemin": "^3.3.0",
"gulp-modernizr": "^1.0.0-alpha",
"gulp-notify": "^3.0.0",
"gulp-rename": "^1.2.2",
"gulp-swig": "^0.8.0",
"gulp-uglify": "^3.0.0",
"gulp-useref": "^3.1.2",
"gulp-util": "^3.0.8",
"gulp-watch": "^4.3.11",
"html-webpack-plugin": "^2.29.0",
"image-webpack-loader": "^3.3.1",
"node-sass": "^4.5.3",
"redbox-react": "^1.4.3",
"require-dir": "^0.3.2",
"resolve-url-loader": "^2.1.0",
"rimraf": "^2.6.1",
"sass-loader": "^6.0.6",
"sass-resources-loader": "^1.3.0",
"style-loader": "^0.18.2",
"url-loader": "^0.5.9",
"webpack": "^3.3.0",
"webpack-dev-server": "^2.5.1"
},
"dependencies": {
"apisauce": "^0.14.0",
"babel-polyfill": "^6.23.0",
"fastclick": "^1.0.6",
"gsap": "^1.20.2",
"i18next-client": "^1.11.4",
"lodash": "^4.17.4",
"modernizr": "^3.5.0",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-redux": "^5.0.5",
"react-router": "^3.0.0",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"updeep": "^1.0.0",
"whatwg-fetch": "^2.0.3"
}
}