Last active
May 15, 2020 15:00
-
-
Save philipjfulcher/18f553d8cdc33ec04c58eb6cafe8baed to your computer and use it in GitHub Desktop.
package.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": "nx-migrate-angularjs", | |
"version": "0.0.0", | |
"license": "MIT", | |
"scripts": { | |
"ng": "ng", | |
"nx": "nx", | |
"start": "ng serve", | |
"build": "ng build", | |
"test": "ng test", | |
"lint": "nx workspace-lint && ng lint", | |
"e2e": "ng e2e", | |
"affected:apps": "nx affected:apps", | |
"affected:libs": "nx affected:libs", | |
"affected:build": "nx affected:build", | |
"affected:e2e": "nx affected:e2e", | |
"affected:test": "nx affected:test", | |
"affected:lint": "nx affected:lint", | |
"affected:dep-graph": "nx affected:dep-graph", | |
"affected": "nx affected", | |
"format": "nx format:write", | |
"format:write": "nx format:write", | |
"format:check": "nx format:check", | |
"update": "ng update @nrwl/workspace", | |
"workspace-schematic": "nx workspace-schematic", | |
"dep-graph": "nx dep-graph", | |
"help": "nx help", | |
"postinstall": "ngcc --properties es2015 browser module main --first-only --create-ivy-entry-points" | |
}, | |
"private": true, | |
"dependencies": { | |
"@nrwl/angular": "^9.0.4", | |
"@angular/animations": "9.0.0", | |
"@angular/common": "9.0.0", | |
"@angular/compiler": "9.0.0", | |
"@angular/core": "9.0.0", | |
"@angular/forms": "9.0.0", | |
"@angular/platform-browser": "9.0.0", | |
"@angular/platform-browser-dynamic": "9.0.0", | |
"@angular/router": "9.0.0", | |
"angular": "^1.5.0-rc.2", | |
"angular-ui-router": "^0.4.2", | |
"core-js": "^2.5.4", | |
"rxjs": "~6.5.0", | |
"zone.js": "^0.10.2" | |
}, | |
"devDependencies": { | |
"@angular/cli": "9.0.1", | |
"@nrwl/workspace": "9.0.4", | |
"@types/node": "~8.9.4", | |
"dotenv": "6.2.0", | |
"ts-node": "~7.0.0", | |
"tslint": "~5.11.0", | |
"eslint": "6.1.0", | |
"typescript": "~3.7.4", | |
"prettier": "1.18.2", | |
"@angular/compiler-cli": "9.0.0", | |
"@angular/language-service": "9.0.0", | |
"@angular-devkit/build-angular": "0.900.1", | |
"codelyzer": "~5.0.1", | |
"karma": "~4.0.0", | |
"karma-chrome-launcher": "~2.2.0", | |
"karma-coverage-istanbul-reporter": "~2.0.1", | |
"karma-jasmine": "~1.1.2", | |
"karma-jasmine-html-reporter": "^0.2.2", | |
"jasmine-core": "~2.99.1", | |
"jasmine-spec-reporter": "~4.2.1", | |
"@types/jasmine": "~2.8.8", | |
"protractor": "~5.4.0", | |
"@types/jasminewd2": "~2.0.3", | |
"babel-preset-es2015": "^6.3.13", | |
"babelify": "^7.2.0", | |
"browser-sync": "^2.11.1", | |
"browserify": "^13.0.0", | |
"browserify-ngannotate": "^2.0.0", | |
"gulp": "^3.9.1", | |
"gulp-angular-templatecache": "^1.8.0", | |
"gulp-notify": "^2.2.0", | |
"gulp-rename": "^1.2.2", | |
"gulp-uglify": "^1.5.3", | |
"gulp-util": "^3.0.7", | |
"marked": "^0.3.5", | |
"merge-stream": "^1.0.0", | |
"vinyl-source-stream": "^1.1.0" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment