Last active
April 15, 2016 17:50
-
-
Save madeinfree/204ea125c89c89eb1c91 to your computer and use it in GitHub Desktop.
generator the initial React Project with webpack, babel, es2015, webpack-dev-server
This file contains 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": "map-note", | |
"version": "1.0.0", | |
"description": "the map note project", | |
"main": "index.js", | |
"scripts": { | |
"test": "echo \"Error: no test specified\" && exit 1" | |
}, | |
"repository": { | |
"type": "git", | |
"url": "git+https://github.com/MapNote/mainly.git" | |
}, | |
"keywords": [ | |
"react" | |
], | |
"author": "Whien", | |
"license": "ISC", | |
"bugs": { | |
"url": "https://github.com/MapNote/mainly/issues" | |
}, | |
"homepage": "https://github.com/MapNote/mainly#readme", | |
"devDependencies": { | |
"babel": "^6.5.2", | |
"babel-core": "^6.7.2", | |
"babel-eslint": "^6.0.2", | |
"babel-loader": "^6.2.4", | |
"babel-plugin-transform-es2015-arrow-functions": "^6.5.2", | |
"babel-preset-es2015": "^6.6.0", | |
"babel-preset-react": "^6.5.0", | |
"babel-preset-stage-0": "^6.5.0", | |
"eslint": "^2.7.0", | |
"eslint-config-airbnb": "^7.0.0", | |
"eslint-loader": "^1.3.0", | |
"eslint-plugin-react": "^4.3.0", | |
"react-hot-loader": "^1.3.0", | |
"webpack": "^1.12.14", | |
"webpack-dev-server": "^1.14.1" | |
}, | |
"dependencies": { | |
"react": "^15.0.0", | |
"react-dom": "^15.0.0", | |
"react-router": "^2.0.1" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment