-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.11 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
71
72
{
"name": "nestjs-graphql-connection",
"version": "1.1.1",
"description": "Relay-style pagination for NestJS GraphQL server.",
"keywords": [
"nestjs",
"graphql",
"relay",
"pagination",
"connection",
"edge",
"node"
],
"author": "Equalogic Ltd",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/equalogic/nestjs-graphql-connection.git"
},
"scripts": {
"prebuild": "rimraf dist && npm run barrels:generate",
"build": "tsc -p tsconfig.build.json",
"postbuild": "cp package.json README.md dist/",
"format": "prettier --write .",
"lint": "eslint --ext .ts,.js --ignore-path .gitignore .",
"lint:fix": "eslint --ext .ts,.js --ignore-path .gitignore . --fix",
"test": "jest",
"test:watch": "jest --watch",
"postversion": "npm run postbuild",
"barrels:generate": "barrelsby --config barrelsby.json",
"release": "np"
},
"dependencies": {
"class-validator": "^0.15.0",
"joi": "^17.2.0",
"query-string": "^7.1.1",
"ts-class-initializable": "1.0.2"
},
"devDependencies": {
"@nestjs/common": "11.1.19",
"@nestjs/core": "11.1.19",
"@nestjs/graphql": "13.2.5",
"@types/jest": "29.5.14",
"@types/node": "16.18.126",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"barrelsby": "2.8.1",
"eslint": "8.57.1",
"eslint-config-prettier": "8.10.2",
"eslint-import-resolver-typescript": "3.10.1",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-n": "14.0.0",
"eslint-plugin-promise": "6.6.0",
"jest": "29.7.0",
"np": "10.3.0",
"prettier": "3.8.3",
"reflect-metadata": "0.2.2",
"ts-jest": "29.4.9",
"typescript": "5.9.3"
},
"peerDependencies": {
"@nestjs/common": "^7.1 || ^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0",
"@nestjs/core": "^7.1 || ^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0",
"@nestjs/graphql": "^7.4 || ^8.0.0 || ^9.0.0 || ^10.0.0 || ^12.0.0 || ^13.0.0",
"reflect-metadata": "^0.1.13 || ^0.2.0"
},
"main": "index.js",
"types": "index.d.ts"
}