generated from argahsuknesib/TS-Template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.47 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
{
"name": "solid-stream-notifications-cache",
"version": "1.0.0",
"description": "A cache service to store the notification stream from a solid server",
"main": "dist/index.js",
"scripts": {
"build": "npx tsc",
"start": "npx tsc && node --max-old-space-size=8192 dist/index.js cache-notifications",
"test": "jest --coverage",
"lint:ts": "eslint . --ext ts --report-unused-disable-directives --max-warnings 0",
"lint:ts:fix": "eslint . --ext ts --report-unused-disable-directives --max-warnings 0 --fix",
"test:watch": "jest --watch"
},
"keywords": [],
"author": "Kushagra Singh Bisen",
"license": "ISC",
"devDependencies": {
"@types/bunyan": "^1.8.11",
"@types/jest": "^29.2.4",
"@types/node": "^20.11.24",
"@types/websocket": "^1.0.10",
"eslint": "^8.57.0",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jsdoc": "^48.2.0",
"jest": "^29.3.1",
"supertest": "^6.3.3",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
},
"dependencies": {
"@types/n3": "^1.16.4",
"@types/redis": "^4.0.11",
"@types/ws": "^8.5.10",
"@typescript-eslint/parser": "^7.1.0",
"axios": "^1.6.7",
"bunyan": "^1.8.15",
"commander": "^12.0.0",
"ioredis": "^5.3.2",
"n3": "^1.17.2",
"node-fetch": "^3.3.2",
"websocket": "^1.0.34",
"ws": "^8.16.0"
}
}