|
1 | 1 | { |
2 | | - "name": "ng-webpack-play", |
| 2 | + "name": "angular2-webpack-starter", |
| 3 | + "version": "3.0.0", |
| 4 | + "description": "An Angular 2 Webpack Starter kit featuring Angular 2 (Router, Http, Forms, Services, Tests, E2E, Coverage), Karma, Protractor, Jasmine, Istanbul, TypeScript, and Webpack by AngularClass", |
| 5 | + "author": "Patrick Stapleton <[email protected]>", |
| 6 | + "homepage": "https://github.com/angularclass/angular2-webpack-starter", |
| 7 | + "license": "MIT", |
| 8 | + "scripts": { |
| 9 | + "clean": "npm cache clean && rimraf node_modules doc typings coverage dist", |
| 10 | + "clean:dist": "rimraf dist", |
| 11 | + "preclean:install": "npm run clean", |
| 12 | + "clean:install": "npm set progress=false && npm install", |
| 13 | + "preclean:start": "npm run clean", |
| 14 | + "clean:start": "npm start", |
| 15 | + "watch": "npm run watch:dev", |
| 16 | + "watch:dev": "webpack --watch --progress --profile --colors --display-error-details --display-cached", |
| 17 | + "watch:prod": "webpack --watch --config webpack.prod.config.js --progress --profile --colors --display-error-details --display-cached", |
| 18 | + "build": "npm run build:dev", |
| 19 | + "prebuild:dev": "npm run clean:dist", |
| 20 | + "build:dev": "webpack --progress --profile --colors --display-error-details --display-cached", |
| 21 | + "prebuild:prod": "npm run clean:dist", |
| 22 | + "build:prod": "webpack --config webpack.prod.config.js --progress --profile --colors --display-error-details --display-cached --bail", |
| 23 | + "server": "npm run server:dev:hmr", |
| 24 | + "server:dev": "webpack-dev-server --inline --progress --profile --colors --watch --display-error-details --display-cached --content-base src/", |
| 25 | + "server:dev:hmr": "npm run server:dev -- --hot", |
| 26 | + "server:prod": "http-server dist --cors", |
| 27 | + "lint": "tsconfig-lint", |
| 28 | + "docs": "typedoc --options typedoc.json --exclude **/*.spec.ts ./src/", |
| 29 | + "start": "npm run server", |
| 30 | + "typings-install": "typings install", |
| 31 | + "postinstall": "npm run typings-install", |
| 32 | + "version": "npm run build", |
| 33 | + "postversion": "git push && git push --tags" |
| 34 | + }, |
3 | 35 | "dependencies": { |
4 | | - "angular2": "2.0.0-beta.2", |
5 | | - "es6-promise": "^3.0.2", |
| 36 | + "angular2": "2.0.0-beta.7", |
| 37 | + "es6-promise": "^3.1.2", |
6 | 38 | "es6-shim": "^0.33.3", |
7 | | - "reflect-metadata": "0.1.2", |
8 | | - "rxjs": "5.0.0-beta.0", |
9 | | - "zone.js": "0.5.10" |
| 39 | + "es7-reflect-metadata": "^1.6.0", |
| 40 | + "rxjs": "5.0.0-beta.2", |
| 41 | + "zone.js": "0.5.15" |
10 | 42 | }, |
11 | 43 | "devDependencies": { |
12 | | - "raw-loader": "^0.5.1", |
13 | | - "ts-loader": "^0.7.2", |
14 | | - "typescript": "^1.7.3", |
15 | | - "webpack": "^1.12.2", |
16 | | - "webpack-dev-server": "^1.12.1" |
| 44 | + "compression-webpack-plugin": "^0.3.0", |
| 45 | + "copy-webpack-plugin": "^1.1.1", |
| 46 | + "css-loader": "^0.23.1", |
| 47 | + "es6-promise-loader": "^1.0.1", |
| 48 | + "exports-loader": "^0.6.3", |
| 49 | + "expose-loader": "^0.7.1", |
| 50 | + "file-loader": "^0.8.5", |
| 51 | + "html-webpack-plugin": "^2.9.0", |
| 52 | + "http-server": "^0.9.0", |
| 53 | + "ie-shim": "^0.1.0", |
| 54 | + "imports-loader": "^0.6.5", |
| 55 | + "istanbul-instrumenter-loader": "^0.2.0", |
| 56 | + "json-loader": "^0.5.4", |
| 57 | + "raw-loader": "0.5.1", |
| 58 | + "remap-istanbul": "^0.5.1", |
| 59 | + "rimraf": "^2.5.2", |
| 60 | + "source-map-loader": "^0.1.5", |
| 61 | + "style-loader": "^0.13.0", |
| 62 | + "ts-helper": "0.0.1", |
| 63 | + "ts-loader": "^0.8.1", |
| 64 | + "ts-node": "^0.5.5", |
| 65 | + "tsconfig-lint": "^0.6.0", |
| 66 | + "tslint": "^3.3.0", |
| 67 | + "tslint-loader": "^2.1.0", |
| 68 | + "typedoc": "^0.3.12", |
| 69 | + "typescript": "1.8.2", |
| 70 | + "typings": "^0.6.8", |
| 71 | + "url-loader": "^0.5.7", |
| 72 | + "webpack": "^1.12.14", |
| 73 | + "webpack-dev-server": "^1.14.1", |
| 74 | + "webpack-load-plugins": "^0.1.2", |
| 75 | + "webpack-md5-hash": "^0.0.5", |
| 76 | + "webpack-validator": "^1.0.0-beta.4" |
17 | 77 | }, |
18 | | - "scripts": { |
19 | | - "build": "webpack", |
20 | | - "play": "webpack-dev-server" |
| 78 | + "repository": { |
| 79 | + "type": "git", |
| 80 | + "url": "https://github.com/angularclass/angular2-webpack-starter.git" |
| 81 | + }, |
| 82 | + "bugs": { |
| 83 | + "url": "https://github.com/angularclass/angular2-webpack-starter/issues" |
| 84 | + }, |
| 85 | + "engines": { |
| 86 | + "node": ">= 4.2.1", |
| 87 | + "npm": ">= 3" |
21 | 88 | } |
22 | 89 | } |
0 commit comments