forked from thelgevold/angular-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 3.52 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "angular2-poc",
"scripts": {
"aot-i18n-en": "ngc -p i18n/tsconfig.json && rollup -c i18n/rollup-config.js -o i18n/dist/build-en.js",
"aot-i18n-no": "ngc --i18nFile=./i18n/locale/messages.no.xlf --locale=no --i18nFormat=xlf -p i18n/tsconfig.json && rollup -c i18n/rollup-config.js -o i18n/dist/build-no.js",
"generate-i18n-xlf": "ng-xi18n -p i18n/tsconfig.json",
"lite": "lite-server",
"start": "npm run lite",
"build-demo-app": "ngc -p . && rollup -c rollup/rollup-config.js && ngc -p tsconfig-upgrade.json && ngc -p tsconfig-upgrade.json && rollup -c rollup/rollup-ng-upgrade.js",
"browserify-demo": "ngc -p tsconfig-es5-commonjs-aot.json && browserify built-es5-commonjs-aot/app/main.js -o dist/browserify-bundle.js && uglifyjs dist/browserify-bundle.js -o dist/browserify-bundle.min.js -c -m",
"closure-compiler-demo": "ngc -p tsconfig-es6.json && java -jar node_modules/google-closure-compiler/compiler.jar --flagfile closure-compiler/closure.conf",
"rollup-es6": "ngc -p tsconfig-es6.json && rollup -c rollup/rollup-es6.js && tsc dist/bundle-rollup-es6.js --target es5 --allowJS --outFile dist/bundle-rollup-es5.js && uglifyjs dist/bundle-rollup-es5.js -o dist/bundle-rollup-es5.min.js -c -m",
"rollup-demo": "ngc -p tsconfig-es5.json && rollup -c rollup/rollup-config-demo.js",
"systemjs-demo": "tsc -p tsconfig-es5-commonjs.json",
"parcel-demo": "ngc -p tsconfig-es6.json && parcel build built-es6/app/main.js --out-dir dist/parcel-bundle",
"systemjs-builder-demo": "npm run systemjs-demo && node systemjs-builder/systemjs-builder.js",
"webpack-no-lazy-loading": "ngc -p tsconfig-es5.json && webpack --config webpack/webpack-no-lazy-loading.js --progress",
"webpack-lazy-loading": "webpack --config webpack/webpack-lazy-loading.js --progress",
"webpack-no-angular-optimizations": "ngc -p tsconfig-es5.json && webpack --config webpack/webpack-no-angular-optimizations.js --progress",
"webpack-babili": "ngc -p tsconfig-es6.json && webpack --config webpack/webpack-babili.js --progress",
"build-all": "npm run browserify-demo && npm run parcel-demo && npm run webpack-babili && npm run webpack-lazy-loading && npm run webpack-no-lazy-loading && npm run systemjs-builder-demo && npm run build-demo-app && npm run closure-compiler-demo && npm run rollup-demo && npm run rollup-es6"
},
"devDependencies": {
"@angular-devkit/build-optimizer": "0.0.36",
"@ngtools/webpack": "1.9.3",
"babili-webpack-plugin": "^0.1.1",
"browserify": "14.5.0",
"compression": "1.6.2",
"lite-server": "2.2.2",
"parcel-bundler": "1.4.0",
"path": "0.12.7",
"raw-loader": "0.5.1",
"systemjs-builder": "0.16.4",
"typescript": "2.4.2",
"uglify-js": "3.2.2",
"webpack": "3.10.0"
},
"dependencies": {
"@angular/animations": "5.1.2",
"@angular/common": "5.1.2",
"@angular/compiler": "5.1.2",
"@angular/compiler-cli": "5.1.2",
"@angular/core": "5.1.2",
"@angular/forms": "5.1.2",
"@angular/http": "5.1.2",
"@angular/platform-browser": "5.1.2",
"@angular/platform-browser-dynamic": "5.1.2",
"@angular/platform-server": "5.1.2",
"google-closure-compiler": "20171023.0.1",
"@angular/router": "5.1.2",
"@angular/upgrade": "5.1.2",
"core-js": "^2.4.1",
"events": "^1.0.2",
"fbjs": "^0.3.1",
"flux": "^2.1.1",
"rollup": "0.53.1",
"rollup-plugin-commonjs": "8.2.6",
"rollup-plugin-uglify": "2.0.1",
"rollup-plugin-node-resolve": "3.0.0",
"rxjs": "5.5.6",
"systemjs": "0.19.39",
"zone.js": "0.8.6"
}
}