forked from angular-university/angular-for-beginners-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.17 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
{
"name": "angular-for-beginners-starter",
"description": "Angular For Beginners Course",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "./node_modules/.bin/http-server -c-1 ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/jhades/angular-for-beginners-starter.git"
},
"author": "Angular University",
"license": "MIT",
"bugs": {
"url": "https://github.com/jhades/angular-for-beginners-starter/issues"
},
"homepage": "https://github.com/jhades/angular-for-beginners-starter#readme",
"devDependencies": {
"http-server": "^0.9.0"
},
"dependencies": {
"@angular/animations": "^5.0.0",
"@angular/common": "^5.0.0",
"@angular/compiler": "^5.0.0",
"@angular/core": "^5.0.0",
"@angular/forms": "^5.0.0",
"@angular/http": "^5.0.0",
"@angular/platform-browser": "^5.0.0",
"@angular/platform-browser-dynamic": "^5.0.0",
"@angular/router": "^5.0.0",
"core-js": "^2.4.1",
"rxjs": "^5.5.2",
"zone.js": "^0.8.14",
"body-parser": "1.15.1",
"express": "4.13.4",
"lodash": "4.13.1",
"systemjs": "0.19.27",
"ts-node": "3.0.2",
"typescript": "2.2.0"
}
}