-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.55 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "nestjs-graphql-redis-subscriptions",
"version": "0.1.1",
"description": "A nestjs module that provide an instance of graphql-redis-subscriptions",
"author": "Alex Hermann <contact@pop-code.com>",
"repository": "https://github.com/Pop-Code/nestjs-graphql-redis-subscriptions.git",
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rm -Rf dist && tsc -b tsconfig.build.json",
"format": "prettier \"**/*.ts\" --ignore-path ./.prettierignore --write && git status",
"lint": "eslint ./src/**/*.ts",
"doc": "rm -Rf ./docs && typedoc ./src && touch ./docs/.nojekyll",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand"
},
"peerDependencies": {
"@nestjs/common": "^7 || ^8",
"graphql": "^16.4.0",
"graphql-redis-subscriptions-graphql16-ioredis5": "^1.0.0",
"graphql-subscriptions": "^2.0.0"
},
"dependencies": {
"ioredis": "5.0.4"
},
"devDependencies": {
"@nestjs/common": "8.4.4",
"@nestjs/core": "8.4.4",
"@nestjs/platform-express": "8.4.4",
"@nestjs/testing": "8.4.4",
"@types/jest": "27.4.1",
"@types/node": "^16.7.1",
"@typescript-eslint/eslint-plugin": "5.21.0",
"@typescript-eslint/parser": "5.21.0",
"codecov": "3.8.3",
"eslint": "8.14.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prefer-arrow": "1.2.3",
"graphql": "16.4.0",
"graphql-redis-subscriptions-graphql16-ioredis5": "^1.0.0",
"graphql-subscriptions": "^2.0.0",
"jest": "^27.5.1",
"prettier": "2.6.2",
"reflect-metadata": "0.1.13",
"rxjs": "7.5.5",
"ts-jest": "27.1.4",
"ts-node": "10.7.0",
"tsconfig-paths": "3.14.1",
"typedoc": "0.22.15",
"typescript": "4.6.3"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.{js,jsx,ts}",
"!index.ts",
"!**/test/**"
],
"coverageDirectory": "../coverage"
},
"engines": {
"node": ">=0.12"
}
}