-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 3.07 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "angular2-aot-webpack",
"version": "1.0.0",
"description": "Angular 2 AOT (Ahead Of Time) offline compilation example with Webpack",
"main": "build/modules/main.module.js",
"scripts": {
"cleanup": "rimraf src/app/**/*.ngfactory.ts src/app/**/*.ngstyle.ts src/app/**/*.ngsummary.json build dist",
"explorer": "source-map-explorer ./dist/main.bundle.js ./dist/main.bundle.js.map",
"ngc": "ngc",
"serve": "http-server ./dist -a 0.0.0.0 -p 9000",
"start": "npm run cleanup && npm run ngc && concurrently -r \"webpack-dev-server --config webpack.aot.config.js\" \"node ./bin/ngc-watch.js\"",
"start-prod": "npm run ngc && npm run build && npm run serve",
"build": "npm run cleanup && npm run ngc && webpack --config webpack.aot.config.js -p",
"deploy": "gh-pages -d dist",
"aot": "npm run cleanup && npm run ngc && concurrently -r \"webpack-dev-server --config webpack.aot.config.js\" \"node ./bin/ngc-watch.js\"",
"jit": "npm run cleanup && webpack-dev-server --config webpack.jit.config.js"
},
"keywords": [
"angular2",
"aot",
"typescript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/blacksonic/angular2-aot-webpack.git"
},
"author": {
"name": "blacksonic",
"email": "[email protected]"
},
"license": "ISC",
"dependencies": {
"@angular/common": "2.4.1",
"@angular/compiler": "2.4.1",
"@angular/core": "2.4.1",
"@angular/forms": "2.4.1",
"@angular/http": "2.4.1",
"@angular/platform-browser": "2.4.1",
"@angular/platform-browser-dynamic": "2.4.1",
"@angular/platform-server": "2.4.1",
"@angular/router": "3.4.1",
"@ngtools/webpack": "^1.2.1",
"bootstrap": "^3.3.7",
"core-js": "2.4.1",
"es6-promise": "^4.0.5",
"frozenui": "^1.3.0",
"html-loader": "^0.4.4",
"html-withimg-loader": "^0.1.16",
"image-webpack-loader": "^3.1.0",
"jquery": "^3.1.1",
"jquery-slimscroll": "^1.3.8",
"metismenu": "^2.6.1",
"morris.js": "^0.5.0",
"raphael": "^2.2.7",
"reflect-metadata": "^0.1.3",
"rxjs": "5.0.2",
"ts-helpers": "^1.1.2",
"zone.js": "0.7.4"
},
"devDependencies": {
"@angular/compiler-cli": "2.4.1",
"@angular/platform-server": "2.4.1",
"@types/node": "6.0.53",
"angular-router-loader": "^0.4.0",
"angular2-template-loader": "0.6.0",
"awesome-typescript-loader": "^2.2.1",
"chokidar": "1.6.1",
"concurrently": "3.1.0",
"copy-webpack-plugin": "4.0.1",
"css-loader": "0.26.1",
"extract-text-webpack-plugin": "2.0.0-beta.4",
"file-loader": "^0.9.0",
"gh-pages": "0.12.0",
"html-loader": "^0.4.4",
"html-withimg-loader": "^0.1.16",
"html-webpack-plugin": "^2.24.1",
"http-server": "0.9.0",
"json-loader": "^0.5.4",
"raw-loader": "0.5.1",
"rimraf": "2.5.4",
"script-ext-html-webpack-plugin": "^1.3.4",
"source-map-explorer": "1.3.3",
"style-loader": "0.13.1",
"to-string-loader": "1.1.5",
"typescript": "2.0.10",
"url-loader": "^0.5.7",
"webpack": "2.1.0-beta.27",
"webpack-dev-server": "2.1.0-beta.11"
}
}