forked from kyle-mccarthy/nest-next
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 931 Bytes
/
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
{
"name": "nest-next",
"version": "0.6.3",
"description": "Nestjs module to allow for server side rendering with Nextjs",
"author": "Kyle McCarthy",
"license": "MIT",
"keywords": [
"nestjs",
"nextjs"
],
"repository": {
"type": "git",
"url": "https://github.com/kyle-mccarthy/nest-next.git"
},
"scripts": {
"build": "rm -rf ./dist && tsc -p tsconfig.json",
"prepublish": "yarn run build",
"publish": "yarn publish --access public"
},
"devDependencies": {
"@types/next": "^8.0.3",
"@types/node": "^11.12.1",
"mermaid.cli": "^0.5.1",
"prettier": "^1.16.4",
"reflect-metadata": "^0.1.13",
"tslint": "^5.14.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.3.4000"
},
"dependencies": {
"@nestjs/common": "^6.0.4",
"@nestjs/core": "^6.0.4",
"@nestjs/platform-fastify": "^6.0.4",
"next": "^8.0.3",
"rxjs": "^6.4.0"
}
}