This repository was archived by the owner on Jan 27, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathpackage.json
49 lines (49 loc) · 1.41 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
{
"name": "angular2-http-demo",
"version": "0.1.0",
"repository": "https://github.com/kdechant/angular2-http-demo",
"scripts": {
"tsc": "tsc",
"tsc:w": "tsc -w",
"lite": "lite-server",
"start": "concurrent \"npm run tsc:w\" \"node app.js\" "
},
"license": "ISC",
"dependencies": {
"@angular/common": "~4.3.1",
"@angular/compiler": "~4.3.1",
"@angular/compiler-cli": "~4.3.1",
"@angular/core": "~4.3.1",
"@angular/forms": "~4.3.1",
"@angular/http": "~4.3.1",
"@angular/platform-browser": "~4.3.1",
"@angular/platform-browser-dynamic": "~4.3.1",
"@angular/router": "~4.3.1",
"@angular/upgrade": "~4.3.1",
"angular-in-memory-web-api": "~0.5.1",
"body-parser": "^1.18.2",
"bootstrap": "^3.3.7",
"core-js": "^2.5.1",
"express": "^4.16.2",
"reflect-metadata": "^0.1.10",
"rxjs": "5.1.1",
"systemjs": "0.19.39",
"zone.js": "^0.8.18"
},
"devDependencies": {
"@types/angular": "^1.6.39",
"@types/angular-animate": "^1.5.9",
"@types/angular-cookies": "^1.4.5",
"@types/angular-mocks": "^1.5.11",
"@types/angular-resource": "^1.5.14",
"@types/angular-route": "^1.3.2",
"@types/angular-sanitize": "^1.3.6",
"@types/node": "^8.0.0",
"canonical-path": "0.0.2",
"concurrently": "^3.5.0",
"http-server": "^0.10.0",
"lite-server": "^2.3.0",
"lodash": "^4.16.4",
"typescript": "^2.3.2"
}
}