Last active
June 16, 2017 18:13
-
-
Save DreySkee/f23edc9fc4616374a354846f1b1dcc2a to your computer and use it in GitHub Desktop.
1 - Wordpress API + ReactJS (Updated)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "wp-api-react", | |
"version": "1.0.0", | |
"description": "", | |
"main": "index.js", | |
"scripts": { | |
"test": "echo \"Error: no test specified\" && exit 1", | |
"start": "webpack-dev-server --inline --progress --config webpack.dev.js", | |
"build": "npm run clean && webpack -p --progress --config webpack.production.js", | |
"clean": "rimraf ./build/*" | |
}, | |
"author": "", | |
"license": "ISC", | |
"dependencies": { | |
"alt": "^0.18.6", | |
"axios": "^0.16.2", | |
"babel-polyfill": "^6.23.0", | |
"babel-runtime": "^6.23.0", | |
"lodash": "^4.17.4", | |
"react": "^15.5.4", | |
"react-dom": "^15.5.4", | |
"react-router-dom": "^4.1.1" | |
}, | |
"devDependencies": { | |
"babel-core": "^6.24.1", | |
"babel-loader": "^7.0.0", | |
"babel-plugin-transform-runtime": "^6.23.0", | |
"babel-preset-es2015": "^6.24.1", | |
"babel-preset-react": "^6.24.1", | |
"babel-preset-stage-0": "^6.24.1", | |
"html-webpack-plugin": "^2.28.0", | |
"react-hot-loader": "^1.3.1", | |
"rimraf": "^2.6.1", | |
"webpack": "^2.6.1", | |
"webpack-dev-server": "^2.4.5" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment