Add working webpack config and react app
It doesn't do much yet, I'm just sketching out the basic elements and starting to get a basis for something that will work
This commit is contained in:
parent
c1c059953f
commit
6338c4f066
5 changed files with 177 additions and 2 deletions
26
package.json
26
package.json
|
@ -4,7 +4,8 @@
|
|||
"description": "For tracking expenses",
|
||||
"main": "main.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"build": "babel lib -d build"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -22,10 +23,31 @@
|
|||
"homepage": "https://github.com/EliRibble/vanth#readme",
|
||||
"dependencies": {
|
||||
"react": "^15.0.2",
|
||||
"react-bootstrap": "^0.29.4",
|
||||
"react-dom": "^15.0.2",
|
||||
"react-redux": "^4.4.5",
|
||||
"redux": "^3.5.2"
|
||||
"redux": "^3.5.2",
|
||||
"redux-logger": "^2.6.1",
|
||||
"redux-thunk": "^2.1.0",
|
||||
"urllite": "^0.5.0"
|
||||
},
|
||||
"directories": {
|
||||
"test": "tests"
|
||||
},
|
||||
"devDependencies": {
|
||||
"assets-webpack-plugin": "^3.4.0",
|
||||
"babel-cli": "^6.8.0",
|
||||
"babel-loader": "^6.2.4",
|
||||
"babel-preset-es2015": "^6.6.0",
|
||||
"babel-preset-react": "^6.5.0",
|
||||
"gulp": "^3.9.1",
|
||||
"gulp-html-replace": "^1.5.5",
|
||||
"gulp-rev": "^7.0.0",
|
||||
"gulp-shell": "^0.5.2",
|
||||
"karma": "^0.13.22",
|
||||
"rollup": "^0.26.3",
|
||||
"sprintf": "^0.1.5",
|
||||
"webpack": "^1.13.0",
|
||||
"webpack-dev-server": "^1.14.1"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue