forked from mirkonasato/angular2-course-webpack-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.08 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
{
"name": "angular2-starter",
"version": "0.2.4",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mirkonasato/angular2-course-webpack-starter.git"
},
"scripts": {
"build": "webpack --progress",
"build:prod": "cross-env APP_ENVIRONMENT=production webpack -p --progress",
"postinstall": "typings install",
"serve": "webpack-dev-server --inline --progress"
},
"dependencies": {
"@angular/common": "2.1.1",
"@angular/compiler": "2.1.1",
"@angular/core": "2.1.1",
"@angular/forms": "2.1.1",
"@angular/http": "2.1.1",
"@angular/platform-browser": "2.1.1",
"@angular/platform-browser-dynamic": "2.1.1",
"@angular/router": "3.1.1",
"core-js": "2.4.1",
"rxjs": "5.0.0-beta.12",
"zone.js": "0.6.26"
},
"devDependencies": {
"angular2-template-loader": "0.5.0",
"cross-env": "3.1.3",
"html-webpack-plugin": "2.24.0",
"raw-loader": "0.5.1",
"ts-loader": "0.9.5",
"typescript": "2.0.3",
"typings": "1.4.0",
"webpack": "1.13.2",
"webpack-dev-server": "1.16.2"
}
}