
All the docs related files (docs-app, doc-gen, content, etc) are now to be found inside the `/aio` folder. The related gulp tasks have been moved from the top level gulp file to a new one inside the `/aio` folder. The structure of the `/aio` folder now looks like: ``` /aio/ build/ # gulp tasks content/ #MARKDOWN FILES for devguides, cheatsheet, etc devguides/ cheatsheets/ transforms/ #dgeni packages, templates, etc src/ app/ assets/ content/ #HTML + JSON build artifacts produced by dgeni from /aio/content. #This dir is .gitignored-ed e2e/ #protractor tests for the doc viewer app node_modules/ #dependencies for both the doc viewer builds and the dgeni stuff #This dir is .gitignored-ed gulpfile.js #Tasks for generating docs and building & deploying the doc viewer ``` Closes #14361
51 lines
1.5 KiB
JSON
51 lines
1.5 KiB
JSON
{
|
|
"name": "angular2-webpack",
|
|
"version": "1.0.0",
|
|
"description": "A webpack starter for Angular",
|
|
"scripts": {
|
|
"start": "webpack-dev-server --inline --progress --port 8080",
|
|
"test": "karma start",
|
|
"build": "rimraf dist && webpack --config config/webpack.prod.js --progress --profile --bail"
|
|
},
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@angular/common": "~2.4.0",
|
|
"@angular/compiler": "~2.4.0",
|
|
"@angular/core": "~2.4.0",
|
|
"@angular/forms": "~2.4.0",
|
|
"@angular/http": "~2.4.0",
|
|
"@angular/platform-browser": "~2.4.0",
|
|
"@angular/platform-browser-dynamic": "~2.4.0",
|
|
"@angular/router": "~3.4.0",
|
|
"core-js": "^2.4.1",
|
|
"rxjs": "5.0.1",
|
|
"zone.js": "^0.7.4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^6.0.45",
|
|
"@types/jasmine": "^2.5.35",
|
|
"angular2-template-loader": "^0.6.0",
|
|
"awesome-typescript-loader": "^3.0.0-beta.18",
|
|
"css-loader": "^0.26.1",
|
|
"extract-text-webpack-plugin": "2.0.0-beta.5",
|
|
"file-loader": "^0.9.0",
|
|
"html-loader": "^0.4.3",
|
|
"html-webpack-plugin": "^2.16.1",
|
|
"jasmine-core": "^2.4.1",
|
|
"karma": "^1.2.0",
|
|
"karma-jasmine": "^1.0.2",
|
|
"karma-phantomjs-launcher": "^1.0.2",
|
|
"karma-sourcemap-loader": "^0.3.7",
|
|
"karma-webpack": "^2.0.1",
|
|
"null-loader": "^0.1.1",
|
|
"phantomjs-prebuilt": "^2.1.7",
|
|
"raw-loader": "^0.5.1",
|
|
"rimraf": "^2.5.2",
|
|
"style-loader": "^0.13.1",
|
|
"typescript": "~2.0.10",
|
|
"webpack": "2.2.0",
|
|
"webpack-dev-server": "2.2.0-rc.0",
|
|
"webpack-merge": "^2.4.0"
|
|
}
|
|
}
|