forked from thatseeyou/angular-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.72 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.72 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
{
"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": {
"@types/showdown": "^1.4.32"
},
"jspm": {
"directories": {
"baseURL": "src",
"packages": "jspm_packages"
},
"configFile": "src/systemjs.config.js",
"dependencies": {
"@angular/animations": "npm:@angular/animations@^4.3.5",
"@angular/common": "npm:@angular/common@^4.3.5",
"@angular/compiler": "npm:@angular/compiler@^4.3.5",
"@angular/core": "npm:@angular/core@^4.3.5",
"@angular/forms": "npm:@angular/forms@^4.3.5",
"@angular/http": "npm:@angular/http@^4.3.5",
"@angular/platform-browser": "npm:@angular/platform-browser@^4.3.5",
"@angular/platform-browser-dynamic": "npm:@angular/platform-browser-dynamic@^4.3.5",
"@angular/router": "npm:@angular/router@^4.3.5",
"angular-in-memory-web-api": "npm:angular-in-memory-web-api@^0.3.2",
"angularfire2": "npm:angularfire2@^4.0.0-rc.2",
"core-js": "npm:core-js@^2.5.0",
"rxjs": "npm:rxjs@^5.4.3",
"showdown": "github:showdownjs/showdown@^1.7.1",
"zone.js": "npm:zone.js@^0.8.16"
},
"devDependencies": {},
"overrides": {
"npm:[email protected]": {
"peerDependencies": []
}
}
}
}