forked from sonicoder86/angular2-aot-webpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.28 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
{
"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.4",
"@angular/compiler": "2.4.4",
"@angular/core": "2.4.4",
"@angular/platform-browser": "2.4.4",
"@angular/platform-browser-dynamic": "2.4.4",
"@angular/router": "3.4.4",
"core-js": "2.4.1",
"rxjs": "5.0.3",
"zone.js": "0.7.6"
},
"devDependencies": {
"@angular/compiler-cli": "2.4.4",
"@angular/platform-server": "2.4.4",
"@types/node": "7.0.0",
"angular2-template-loader": "0.6.0",
"awesome-typescript-loader": "3.0.0-beta.18",
"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.5",
"gh-pages": "0.12.0",
"http-server": "0.9.0",
"raw-loader": "0.5.1",
"rimraf": "2.5.4",
"source-map-explorer": "1.3.3",
"style-loader": "0.13.1",
"to-string-loader": "1.1.5",
"typescript": "2.0.10",
"webpack": "2.2.0",
"webpack-dev-server": "2.2.0"
}
}