Created
September 17, 2016 06:40
-
-
Save nhodges/2b291e6f63e990589497cf175abc6a01 to your computer and use it in GitHub Desktop.
Angular 2 on Rails Meta
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": "boilerplate", | |
"version": "0.0.1", | |
"scripts": { | |
"start": "tsc && concurrently \"npm run tsc:w\" \"npm run lite\" ", | |
"lite": "lite-server", | |
"postinstall": "typings install", | |
"tsc": "tsc", | |
"tsc:w": "tsc -w", | |
"typings": "typings" | |
}, | |
"license": "ISC", | |
"dependencies": { | |
"@angular/common": "2.0.0", | |
"@angular/compiler": "2.0.0", | |
"@angular/core": "2.0.0", | |
"@angular/forms": "2.0.0", | |
"@angular/http": "2.0.0", | |
"@angular/platform-browser": "2.0.0", | |
"@angular/platform-browser-dynamic": "2.0.0", | |
"@angular/router": "3.0.0", | |
"@angular/upgrade": "2.0.0", | |
"core-js": "^2.4.1", | |
"reflect-metadata": "^0.1.3", | |
"rxjs": "5.0.0-beta.12", | |
"systemjs": "0.19.27", | |
"zone.js": "^0.6.23", | |
"angular2-in-memory-web-api": "0.0.20", | |
"bootstrap": "^3.3.6" | |
}, | |
"devDependencies": { | |
"concurrently": "^2.2.0", | |
"lite-server": "^2.2.2", | |
"typescript": "^2.0.2", | |
"typings":"^1.3.2" | |
} | |
} |
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
/** | |
* System configuration for Angular 2 samples | |
* Adjust as necessary for your application needs. | |
*/ | |
(function (global) { | |
System.config({ | |
paths: { | |
// paths serve as alias | |
'npm:': 'assets/' | |
}, | |
// map tells the System loader where to look for things | |
map: { | |
// our app is within the app folder | |
app: 'app', | |
// angular bundles | |
'@angular/core': 'npm:@angular/core/bundles/core.umd.js', | |
'@angular/common': 'npm:@angular/common/bundles/common.umd.js', | |
'@angular/compiler': 'npm:@angular/compiler/bundles/compiler.umd.js', | |
'@angular/platform-browser': 'npm:@angular/platform-browser/bundles/platform-browser.umd.js', | |
'@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js', | |
'@angular/http': 'npm:@angular/http/bundles/http.umd.js', | |
'@angular/router': 'npm:@angular/router/bundles/router.umd.js', | |
'@angular/forms': 'npm:@angular/forms/bundles/forms.umd.js', | |
// other libraries | |
'rxjs': 'npm:rxjs', | |
'angular2-in-memory-web-api': 'npm:angular2-in-memory-web-api', | |
}, | |
// packages tells the System loader how to load when no filename and/or no extension | |
packages: { | |
app: { | |
main: './main.js', | |
defaultExtension: 'js' | |
}, | |
rxjs: { | |
defaultExtension: 'js' | |
}, | |
'angular2-in-memory-web-api': { | |
main: './index.js', | |
defaultExtension: 'js' | |
} | |
} | |
}); | |
})(this); |
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
Show hidden characters
{ | |
"compilerOptions": { | |
"target": "es5", | |
"module": "commonjs", | |
"moduleResolution": "node", | |
"sourceMap": true, | |
"emitDecoratorMetadata": true, | |
"experimentalDecorators": true, | |
"removeComments": false, | |
"noImplicitAny": false | |
} | |
} |
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
{ | |
"globalDependencies": { | |
"core-js": "registry:dt/core-js#0.0.0+20160725163759", | |
"jasmine": "registry:dt/jasmine#2.2.0+20160621224255", | |
"node": "registry:dt/node#6.0.0+20160909174046" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment