-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.22 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.22 KB
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
67
68
69
70
{
"name": "jspm-angular4-seed",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"tsc": "tsc",
"build": "tsc -p src",
"build:watch": "tsc -p src && tsc -p src --watch",
"build:trace": "tsc -p src --traceResolution",
"build:debug": "tsc -p src --listFiles --listEmittedFiles",
"serve": "lite-server -c bs-config.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"jspm": "^0.16.53",
"lite-server": "^2.3.0",
"typescript": "^2.3.2"
},
"dependencies": {
"@angular/animations": "^5.1.3",
"@angular/common": "^5.1.3",
"@angular/http": "^5.1.3",
"@angular/compiler": "^5.1.3",
"@angular/core": "^5.1.3",
"@angular/forms": "^5.1.3",
"@angular/platform-browser": "^5.1.3",
"@angular/platform-browser-dynamic": "^5.1.3",
"@angular/router": "^5.1.3",
"@types/showdown": "^1.4.32",
"angular-in-memory-web-api": "^0.5.2",
"angularfire2": "^5.0.0-rc.4",
"firebase": "4.8.0",
"rxjs": "^5.5.6",
"zone.js": "^0.8.19"
},
"jspm": {
"directories": {
"baseURL": "src",
"packages": "jspm_packages"
},
"configFile": "src/systemjs.config.js",
"dependencies": {
"@angular/animations": "npm:@angular/animations@^5.1.3",
"@angular/common": "npm:@angular/common@^5.1.3",
"@angular/compiler": "npm:@angular/compiler@^5.1.3",
"@angular/core": "npm:@angular/core@^5.1.3",
"@angular/forms": "npm:@angular/forms@^5.1.3",
"@angular/http": "npm:@angular/common@^5.1.3",
"@angular/platform-browser": "npm:@angular/platform-browser@^5.1.3",
"@angular/platform-browser-dynamic": "npm:@angular/platform-browser-dynamic@^5.1.3",
"@angular/router": "npm:@angular/router@^5.1.3",
"angular-in-memory-web-api": "npm:angular-in-memory-web-api@0.5.2",
"angularfire2": "npm:angularfire2@5.0.0-rc.4",
"core-js": "npm:core-js@2.5.3",
"firebase": "npm:firebase@4.8.0",
"rxjs": "npm:rxjs@5.5.6",
"showdown": "github:showdownjs/showdown@^1.8.6",
"zone.js": "npm:zone.js@0.8.19"
},
"devDependencies": {},
"overrides": {
"npm:angular-in-memory-web-api@0.5.2": {
"peerDependencies": []
}
}
}
}