forked from sonicoder86/angular2-aot-webpack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.54 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.54 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
46
47
48
49
50
51
{
"name": "angular2-aot-webpack",
"version": "1.0.0",
"description": "Angular 2 AOT (Ahead Of Time) offline compilation example with Webpack",
"main": "index.js",
"scripts": {
"ngc": "ngc -p ./tsconfig.aot.json",
"serve": "http-server -a 0.0.0.0 -p 9000",
"start": "npm run ngc && npm run webpack && npm run serve",
"start-prod": "npm run ngc && npm run webpack-prod && npm run serve",
"webpack": "webpack --config webpack.config.js",
"webpack-aot": "webpack --config webpack.aot.config.js",
"webpack-prod": "webpack --config webpack.prod.config.js"
},
"keywords": [
"angular2",
"aot",
"typescript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/blacksonic/angular2-aot-webpack.git"
},
"author": {
"name": "blacksonic",
"email": "soos.gabor86@gmail.com"
},
"license": "ISC",
"dependencies": {},
"devDependencies": {
"@angular/common": "^2.0.1",
"@angular/compiler": "^2.0.1",
"@angular/compiler-cli": "^0.6.3",
"@angular/core": "^2.0.1",
"@angular/platform-browser": "^2.0.1",
"@angular/platform-browser-dynamic": "^2.0.1",
"@angular/platform-server": "^2.0.1",
"@ngtools/webpack": "^1.0.0",
"@types/core-js": "^0.9.34",
"@types/node": "^6.0.41",
"angular2-template-loader": "^0.5.0",
"awesome-typescript-loader": "^2.2.4",
"core-js": "^2.4.1",
"http-server": "^0.9.0",
"raw-loader": "^0.5.1",
"rxjs": "^5.0.0-beta.12",
"typescript": "2.0.2",
"webpack": "^2.1.0-beta.25",
"zone.js": "^0.6.25"
}
}