36 lines
1.3 KiB
JSON
36 lines
1.3 KiB
JSON
{
|
|
"name": "angular-examples",
|
|
"version": "1.0.0",
|
|
"description": "Example package.json, only contains needed scripts for examples. See _examples/package.json for master package.json.",
|
|
"scripts": {
|
|
"start": "tsc && concurrently \"tsc -w\" \"lite-server\" ",
|
|
"e2e": "tsc && concurrently \"http-server\" \"protractor protractor.config.js\"",
|
|
"http-server": "tsc && http-server",
|
|
"http-server:e2e": "http-server",
|
|
"http-server:cli": "http-server dist/",
|
|
"lite": "lite-server",
|
|
"lite:aot": "lite-server -c aot/bs-config.json",
|
|
"test": "tsc && concurrently \"tsc -w\" \"karma start karma.conf.js\"",
|
|
"tsc": "tsc",
|
|
"tsc:w": "tsc -w",
|
|
"start:webpack": "webpack-dev-server --inline --progress --port 8080",
|
|
"test:webpack": "karma start karma.webpack.conf.js",
|
|
"build:webpack": "rimraf dist && webpack --config config/webpack.prod.js --bail",
|
|
"build:cli": "ng build",
|
|
"build:aot": "ngc -p tsconfig-aot.json && rollup -c rollup-config.js",
|
|
"copy-dist-files": "node ./copy-dist-files.js",
|
|
"i18n": "ng-xi18n"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"licenses": [
|
|
{
|
|
"type": "MIT",
|
|
"url": "https://github.com/angular/angular.io/blob/master/LICENSE"
|
|
}
|
|
],
|
|
"dependencies": {},
|
|
"devDependencies": {},
|
|
"repository": {}
|
|
}
|