-
Notifications
You must be signed in to change notification settings - Fork 90
/
package.json
51 lines (51 loc) · 1.4 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
50
51
{
"name": "nest-next",
"version": "10.1.0",
"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": "npx del-cli ./dist --force && tsc -p tsconfig.json",
"prepublish": "yarn run build",
"publish-public": "yarn publish --access public",
"lint": "node ./node_modules/eslint/bin/eslint.js lib/**",
"test": "bash run_tests.sh test-app",
"test-dev": "bash run_tests.sh test-app-dev"
},
"devDependencies": {
"@nestjs/common": "^8.4.4",
"@nestjs/core": "^8.4.4",
"@nestjs/platform-fastify": "^8.4.4",
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"del-cli": "^4.0.1",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"mermaid.cli": "^0.5",
"next": "^12.1.5",
"prettier": "^2.6.2",
"reflect-metadata": "^0.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18",
"typescript": "^4.6.3"
},
"dependencies": {
"rxjs": "^7.5.5"
},
"peerDependencies": {
"@nestjs/common": ">=6.4",
"@nestjs/core": ">=6.4",
"next": ">=9"
}
}