-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.79 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
{
"name": "angular2-compilation",
"version": "1.0.0",
"description": "Example of ahead-of-time compilation for Angular2",
"main": "app.bundle.js",
"scripts": {
"start": "webpack-dev-server",
"start:aot": "npm run ngc && webpack-dev-server --config webpack-aot.config.js",
"ngc": "node_modules/.bin/ngc -p tsconfig-aot.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mike-plummer/angular2-compilation.git"
},
"author": "Mike Plummer",
"license": "MIT",
"bugs": {
"url": "https://github.com/mike-plummer/angular2-compilation"
},
"homepage": "https://github.com/mike-plummer/angular2-compilation#readme",
"dependencies": {
"@angular/animations": "4.0.2",
"@angular/common": "4.0.2",
"@angular/compiler": "4.0.2",
"@angular/core": "4.0.2",
"@angular/forms": "4.0.2",
"@angular/platform-browser": "4.0.2",
"@angular/platform-browser-dynamic": "4.0.2",
"@angular/router": "4.0.2",
"core-js": "2.4.1",
"reflect-metadata": "^0.1.10",
"rxjs": "5.3.0",
"zone.js": "^0.8.4"
},
"devDependencies": {
"@angular/compiler-cli": "4.0.2",
"@angular/platform-server": "4.0.2",
"@types/core-js": "0.9.35",
"@types/node": "7.0.5",
"angular2-template-loader": "0.6.2",
"awesome-typescript-loader": "3.1.2",
"brotli-webpack-plugin": "^0.3.0",
"css-loader": "0.28.0",
"file-loader": "0.11.1",
"html-loader": "0.4.5",
"html-webpack-plugin": "2.28.0",
"ignore-loader": "^0.1.2",
"ng-router-loader": "^2.1.0",
"raw-loader": "0.5.1",
"remove-assets-webpack-plugin": "^1.1.0",
"to-string-loader": "^1.1.5",
"typescript": "^2.2.2",
"webpack": "2.3.3",
"webpack-closure-compiler": "^2.1.4",
"webpack-dashboard": "0.3.0",
"webpack-dev-server": "2.4.2"
}
}