-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathpackage.json
67 lines (67 loc) · 2.33 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
{
"name": "angular2-aot-webpack",
"version": "1.0.0",
"description": "Angular 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/animations": "4.4.4",
"@angular/common": "4.4.4",
"@angular/compiler": "4.4.4",
"@angular/core": "4.4.4",
"@angular/platform-browser": "4.4.4",
"@angular/platform-browser-dynamic": "4.4.4",
"@angular/router": "4.4.4",
"core-js": "2.5.1",
"rxjs": "5.4.3",
"zone.js": "0.8.18"
},
"devDependencies": {
"@angular/compiler-cli": "4.4.4",
"@angular/platform-server": "4.4.4",
"@types/core-js": "0.9.43",
"@types/node": "8.0.33",
"angular2-template-loader": "0.6.2",
"awesome-typescript-loader": "3.2.3",
"chokidar": "1.7.0",
"concurrently": "3.5.0",
"copy-webpack-plugin": "4.1.1",
"css-loader": "0.28.7",
"extract-text-webpack-plugin": "3.0.1",
"gh-pages": "1.0.0",
"http-server": "0.10.0",
"raw-loader": "0.5.1",
"rimraf": "2.6.2",
"source-map-explorer": "1.5.0",
"style-loader": "0.19.0",
"to-string-loader": "1.1.5",
"typescript": "2.5.3",
"webpack": "3.6.0",
"webpack-dev-server": "2.9.1"
}
}