-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 982 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 982 Bytes
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
{
"name": "react_base_set_up",
"version": "1.0.0",
"description": "React base setup with webpack,gulp,react hot loader, browserify playing nice",
"main": "app.js",
"author": "Kevin Macharia <kevnmacharia@gmail.com>",
"license": "MIT",
"scripts": {
"start": "node .",
"build": "./node_modules/webpack/bin/webpack.js -p"
},
"dependencies": {
"react": "^15.4.1",
"react-dom": "^15.4.1"
},
"devDependencies": {
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.16.0",
"browser-sync": "^2.8.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-concat": "^2.6.1",
"gulp-load-plugins": "^1.5.0",
"gulp-plumber": "^1.1.0",
"gulp-sass": "^3.1.0",
"gulp-uglify": "^2.0.1",
"gulp-util": "^3.0.8",
"react-hot-loader": "^1.2.8",
"webpack": "^1.10.5",
"webpack-dev-middleware": "^1.2.0",
"webpack-hot-middleware": "^2.13.2"
}
}