Last active
August 29, 2015 13:56
-
-
Save knu2xs/9042594 to your computer and use it in GitHub Desktop.
Bower files for my current ideas to quickly get everything to get started.
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
| { | |
| "directory": "resources", | |
| "json": "bower.json" | |
| } |
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": "project-name", | |
| "version": "0.1", | |
| "dependencies": { | |
| "bootstrap": "~3.1.1" | |
| ,"ember" : "~1.4.0" | |
| ,"ember-data": "~1.0.0" | |
| ,"leaflet": "~0.7.0" | |
| ,"esri-leaflet": "" | |
| ,"ember-leaflet": "" | |
| ,"flowtype": "" | |
| ,"font-awesome": "~4.0.3" | |
| ,"jquery.editable": "~1.1.1" | |
| ,"momentjs": "~2.5.1" | |
| ,"flot": "~0.8.3-alpha" | |
| ,"flot.curvedlines": "" | |
| ,"flot.tooltip": "~0.6.6" | |
| } | |
| } |
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
| <!doctype html> | |
| <html> | |
| <head> | |
| <!-- library stylesheets --> | |
| <link rel="stylesheet" href="resources/bootstrap/dist/css/bootstrap.css"> | |
| <link rel="stylesheet" href="resources/leaflet-dist/leaflet.css"> | |
| <link rel="stylesheet" href="resources/font-awesome/css/font-awesome.css"> | |
| <!-- local stylesheet --> | |
| <link rel="stylesheet" href="css/style.css"> | |
| </head> | |
| <body> | |
| <!-- library scripts --> | |
| <script src="resources/bootstrap/dist/js/bootstrap.js"></script> | |
| <script src="resources/jquery/jquery.js"></script> | |
| <script src="resources/handlebars/handlebars.js"></script> | |
| <script src="resources/ember/ember.js"></script> | |
| <script src="resources/leaflet-dist/leaflet.js"></script> | |
| <script src="resources/esri-leaflet/dist/esri-leaflet.js"></script> | |
| <script src="resources/ember-data/ember-data.js"></script> | |
| <script src="resources/momentjs/moment.js"></script> | |
| <!-- local application code --> | |
| <script src="js/app.js"></script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment