-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
66 lines (66 loc) · 1.94 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
{
"name": "angular2-aot-cli-webpack-plugin",
"version": "1.0.0",
"description": "Angular AOT (Ahead Of Time) compilation with the Angular CLI Webpack plugin",
"main": "build/modules/main.module.js",
"scripts": {
"cleanup": "rimraf dist",
"start": "webpack-dev-server --config webpack.aot.config.js",
"build": "npm run cleanup && webpack --config webpack.aot.config.js -p",
"deploy": "gh-pages -d dist",
"jit": "webpack-dev-server --config webpack.jit.config.js",
"aot": "webpack-dev-server --config webpack.aot.config.js"
},
"keywords": [
"angular2",
"aot",
"typescript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/blacksonic/angular2-aot-cli-webpack-plugin.git"
},
"author": {
"name": "blacksonic",
"email": "soos.gabor86@gmail.com"
},
"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",
"@ngtools/webpack": "1.7.2",
"@types/core-js": "0.9.43",
"@types/node": "8.0.33",
"angular2-template-loader": "0.6.2",
"apply-loader": "2.0.0",
"awesome-typescript-loader": "3.2.3",
"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",
"node-sass": "4.5.3",
"pug": "2.0.0-rc.4",
"pug-loader": "2.3.0",
"raw-loader": "0.5.1",
"rimraf": "2.6.2",
"sass-loader": "6.0.6",
"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"
}
}