-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
71 lines (71 loc) · 1.78 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
{
"name": "graphql-amqp-subscriptions",
"description": "GraphQL AMQP Subscriptions",
"version": "3.0.0",
"author": "https://github.com/Surnet/graphql-amqp-subscriptions/graphs/contributors",
"license": "MIT",
"homepage": "https://github.com/Surnet/graphql-amqp-subscriptions",
"bugs": {
"url": "https://github.com/Surnet/graphql-amqp-subscriptions/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Surnet/graphql-amqp-subscriptions.git"
},
"keywords": [
"graphql",
"subscription",
"api",
"push",
"pull",
"amqp",
"rabbitmq",
"rabbit"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "ts-node-dev src/index.ts",
"prebuild": "del dist/",
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "jest --coverage",
"lint": "eslint ."
},
"dependencies": {
"debug": "4.3.7",
"uuid": "11.0.3"
},
"peerDependencies": {
"amqplib": "0.x",
"graphql": "16.x",
"graphql-subscriptions": "3.x"
},
"devDependencies": {
"@types/amqplib": "0.10.5",
"@types/debug": "4.1.12",
"@types/jest": "29.5.14",
"@types/node": "22.9.0",
"@types/uuid": "10.0.0",
"@typescript-eslint/eslint-plugin": "8.15.0",
"@typescript-eslint/parser": "8.15.0",
"amqplib": "0.10.4",
"del-cli": "6.0.0",
"eslint": "8.57.1",
"eslint-config-standard": "17.1.0",
"eslint-plugin-jest": "28.9.0",
"eslint-plugin-security": "3.0.1",
"eslint-plugin-sonarjs": "2.0.4",
"eslint-plugin-unicorn": "56.0.0",
"graphql": "16.9.0",
"graphql-subscriptions": "3.0.0",
"jest": "29.7.0",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"ts-node-dev": "2.0.0",
"typescript": "5.6.3"
}
}