-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.42 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.42 KB
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
{
"name": "ngtools-webpack-lazy-loading",
"version": "1.0.0",
"description": "Example project to demonstrate lazy loading with @ngtools/webpack",
"main": "index.js",
"scripts": {
"build": "webpack",
"build-with-dll": "USE_DLL=true webpack",
"aot": "AOT=true webpack",
"aot-with-dll": "AOT=true USE_DLL=true webpack",
"serve": "webpack-dev-server",
"serve-with-dll": "USE_DLL=true webpack-dev-server",
"serve-aot": "AOT=true webpack-dev-server",
"serve-aot-with-dll": "AOT=true USE_DLL=true webpack-dev-server"
},
"author": "tmeneau@xetus.com",
"license": "ISC",
"devDependencies": {
"@angular/common": "2.4.5",
"@angular/compiler": "2.4.5",
"@angular/compiler-cli": "2.4.5",
"@angular/core": "2.4.5",
"@angular/forms": "2.4.5",
"@angular/http": "2.4.5",
"@angular/platform-browser": "2.4.5",
"@angular/platform-browser-dynamic": "2.4.5",
"@angular/router": "3.4.5",
"@angular/tsc-wrapped": "0.5.1",
"@ngtools/webpack": "1.2.8",
"@types/core-js": "0.9.35",
"add-asset-html-webpack-plugin": "1.0.2",
"core-js": "2.4.1",
"html-loader": "0.4.4",
"html-webpack-plugin": "2.26.0",
"path": "0.12.7",
"raw-loader": "0.5.1",
"rxjs": "5.0.3",
"typescript": "2.1.5",
"webpack": "2.2.1",
"webpack-dev-server": "1.16.2",
"webpack-dll-bundles-plugin": "1.0.0-beta.5",
"webpack-merge": "2.5.0",
"zone.js": "0.7.6"
}
}