Skip to content

Commit

Permalink
Add basic npm/babel config
Browse files Browse the repository at this point in the history
  • Loading branch information
nathancoleman committed Mar 9, 2017
1 parent f9af568 commit f861241
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"presets": [
"es2015", "react"
]
}
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ cleandb:
install:
pip install -r requirements_dev.txt
pip install -r requirements.txt
npm install

lint:
flake8 musicleague app.py --ignore=E731
Expand Down
28 changes: 28 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"name": "musicleague",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/nathancoleman/musicleague.git"
},
"author": "Nathan Coleman",
"license": "MIT",
"bugs": {
"url": "https://github.com/nathancoleman/musicleague/issues"
},
"homepage": "https://github.com/nathancoleman/musicleague",
"devDependencies": {
"babel-cli": "6.23.0",
"babel-preset-es2015": "6.22.0",
"babel-preset-react": "6.23.0"
},
"dependencies": {
"react": "15.4.2",
"react-dom": "15.4.2"
}
}

0 comments on commit f861241

Please sign in to comment.