-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.55 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
{
"name": "angular2-aot",
"version": "1.0.0",
"description": "This repo demonstrates how to achieve ahead of time compilation in angular 2.",
"keywords": [
"angular2",
"aot",
"webpack",
"typescript"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --config webpack.config.js --progress --profile --watch --content-base src/",
"build": "webpack --config webpack-aot.config.js --output-path ./dist --progress --profile --bail"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rafiwardak2003/angular2-aot.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/rafiwardak2003/angular2-aot/issues"
},
"homepage": "https://github.com/rafiwardak2003/angular2-aot#readme",
"dependencies": {
"@angular/common": "2.2.0",
"@angular/compiler": "2.2.0",
"@angular/core": "2.2.0",
"@angular/forms": "2.2.0",
"@angular/http": "2.2.0",
"@angular/platform-browser-dynamic": "2.2.0",
"@angular/platform-server": "2.2.0",
"zone.js": "0.6.26"
},
"devDependencies": {
"@angular/compiler-cli": "^2.2.0",
"@ngtools/webpack": "^1.1.4",
"@types/core-js": "0.9.28",
"@types/node": "6.0.48",
"@types/webpack": "2.0.0",
"angular2-template-loader": "0.6.0",
"html-webpack-plugin": "^2.24.1",
"reflect-metadata": "^0.1.8",
"ts-loader": "^1.2.2",
"typescript": "2.0.9",
"webpack": "2.1.0-beta.25",
"webpack-dev-server": "2.1.0-beta.9",
"webpack-merge": "^0.16.0"
}
}