-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 971 Bytes
/
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
{
"name": "angular-minimum-webpack-starter",
"version": "0.0.1",
"description": "bare-minimum angular webpack starter",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --content-base dist/",
"build": "webpack",
"build-verbose": "webpack --display-error-details"
},
"author": "Matan Sar-Shalom",
"license": "MIT",
"dependencies": {
"@angular/common": "^4.0.0",
"@angular/compiler": "^4.0.0",
"@angular/core": "^4.0.0",
"@angular/platform-browser": "^4.0.0",
"@angular/platform-browser-dynamic": "^4.0.0",
"@types/node": "^7.0.22"
},
"devDependencies": {
"angular2-template-loader": "^0.6.2",
"awesome-typescript-loader": "^3.1.2",
"core-js": "^2.4.1",
"html-loader": "^0.4.5",
"html-webpack-plugin": "^2.28.0",
"raw-loader": "^0.5.1",
"rxjs": "^5.0.1",
"typescript": "^2.2.1",
"webpack": "^2.3.1",
"webpack-dev-server": "^2.4.2",
"zone.js": "^0.7.2"
}
}