-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
38 lines (38 loc) · 1.15 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
{
"name": "fastify-angular-universal",
"version": "0.4.0",
"author": "Exequiel Ceasar Navarrete",
"description": "Fastify plugin for rendering an Angular app from the server using Angular Universal",
"main": "index.js",
"keywords": [
"fastify",
"angular",
"angular-universal",
"server-side-rendering"
],
"repository": {
"type": "git",
"url": "https://github.com/exequiel09/fastify-angular-universal.git"
},
"bugs": {
"url": "https://github.com/exequiel09/fastify-angular-universal/issues"
},
"license": "MIT",
"dependencies": {
"@angular/platform-server": "^6.0.4",
"fastify-plugin": "^1.0.1"
},
"peerDependencies": {
"@angular/animations": "^6.0.4",
"@angular/common": "^6.0.4",
"@angular/compiler": "^6.0.4",
"@angular/core": "^6.0.4",
"@angular/forms": "^6.0.4",
"@angular/http": "^6.0.4",
"@angular/platform-browser": "^6.0.4",
"@angular/platform-browser-dynamic": "^6.0.4",
"@angular/router": "^6.0.4",
"fastify": "^1.5.0",
"rxjs": "^6.2.0"
}
}