Last active
November 30, 2015 17:22
-
-
Save RyanParsley/4879b36e95370cdce9e0 to your computer and use it in GitHub Desktop.
Fragments from ideal project configuration
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
| // Probably wanted in most projects | |
| "dependencies": { | |
| "modernizr": "" | |
| } | |
| // Probably wanted in all angular projects | |
| "dependencies": { | |
| "angular": "", | |
| "angular-ui-router": "" | |
| "angular-mocks": "" | |
| } |
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
| // probably wanted by most projects | |
| "devDependencies": { | |
| "connect-livereload": "", | |
| "grunt-contrib-clean": "", | |
| "grunt-contrib-concat": "", | |
| "grunt-contrib-copy": "", | |
| "grunt-contrib-imagemin": "", | |
| "grunt-contrib-jshint": "", | |
| "grunt-contrib-uglify": "", | |
| "grunt-contrib-watch": "", | |
| "grunt-sass": "", | |
| "grunt-webfont": "", | |
| "load-grunt-tasks": "" | |
| } | |
| // Probably wanted in all angular projects | |
| "devDependencies": { | |
| "grunt-ng-annotate": "", | |
| "protractor": "", | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment