-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1006 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1006 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
{
"name": "webpage-react-boilerplate",
"version": "1.0.0",
"description": "",
"scripts": {
"start": "webpack-dev-server --d --inline --port 9000 --host 0.0.0.0;",
"build-prod": "rimraf build; webpack --config webpack-prod.config.js --progress;",
"start-prod": "webpack-dev-server --config webpack-prod.config.js --port 9000 --host 0.0.0.0;"
},
"author": "alejandro soto",
"license": "ISC",
"devDependencies": {
"autoprefixer-loader": "^3.2.0",
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"css-loader": "^0.26.1",
"extract-text-webpack-plugin": "^2.0.0-rc.3",
"node-sass": "^4.5.0",
"rimraf": "^2.5.4",
"sass-loader": "^6.0.0",
"strip-loader": "^0.1.2",
"style-loader": "^0.13.1",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.3.0"
},
"dependencies": {
"bootstrap-sass": "^3.3.7",
"react": "^15.4.2",
"react-dom": "^15.4.2"
}
}