-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.28 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.28 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
73
74
75
76
77
78
79
{
"name": "realtime-subscription-gateway",
"version": "1.0.0",
"description": "Scalable realtime subscription gateway with Redis, GraphQL, and Firebase Auth",
"main": "dist/index.js",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:security": "jest tests/auth.test.ts tests/inputSanitizer.test.ts tests/rateLimiter.test.ts",
"test:fixes": "node scripts/test-fixes.js",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts",
"seed": "ts-node scripts/seedTopics.ts",
"start:dev": "node scripts/start-dev.js",
"test:client": "node examples/test-client.js",
"demo:pub": "node scripts/publisher.js",
"demo:sub": "node scripts/subscriber.js"
},
"keywords": [
"realtime",
"subscription",
"gateway",
"graphql",
"websocket",
"redis",
"firebase"
],
"author": "",
"license": "MIT",
"dependencies": {
"@graphql-tools/schema": "^10.0.25",
"@types/jsdom": "^21.1.7",
"@types/uuid": "^10.0.0",
"@types/validator": "^13.15.3",
"apollo-server-core": "^3.12.1",
"apollo-server-express": "^3.12.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dompurify": "^3.2.6",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"firebase-admin": "^11.11.0",
"graphql": "^16.8.1",
"graphql-subscriptions": "^2.0.0",
"graphql-ws": "^5.14.2",
"helmet": "^7.1.0",
"joi": "^18.0.1",
"jsdom": "^27.0.0",
"redis": "^4.6.10",
"uuid": "^11.1.0",
"validator": "^13.15.15",
"winston": "^3.11.0",
"ws": "^8.14.2"
},
"devDependencies": {
"@types/compression": "^1.7.4",
"@types/cors": "^2.8.15",
"@types/express": "^4.17.20",
"@types/jest": "^29.5.14",
"@types/node": "^20.8.10",
"@types/supertest": "^6.0.3",
"@types/ws": "^8.5.8",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "^8.52.0",
"jest": "^29.7.0",
"node-fetch": "^2.7.0",
"prettier": "^3.0.3",
"supertest": "^7.1.4",
"ts-jest": "^29.4.2",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2"
}
}