-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.7 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.7 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
80
81
82
{
"name": "simplens-core",
"version": "1.2.0",
"private": true,
"description": "Open-source plugin-based notification orchestration engine for developers who value control ",
"main": "dist/api/server.js",
"type": "module",
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration",
"build": "tsc && tsc-alias",
"start": "node dist/api/server.js",
"dev": "nodemon --exec tsx src/api/server.ts",
"worker": "node dist/workers/worker.js",
"worker:dev": "nodemon --exec tsx src/workers/worker.ts",
"delayed-processor": "node dist/processors/delayed/delayed.processor.js",
"delayed-processor:dev": "nodemon --exec tsx src/processors/delayed/delayed.processor.ts",
"processor": "node dist/processors/unified/unified.processor.js",
"processor:dev": "nodemon --exec tsx src/processors/unified/unified.processor.ts",
"recovery": "node dist/workers/recovery/recovery.service.js",
"recovery:dev": "nodemon --exec tsx src/workers/recovery/recovery.service.ts",
"lint:core": "eslint src/",
"lint:dashboard": "npm run lint --prefix dashboard",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SimpleNotificationSystem/simplens-core.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/SimpleNotificationSystem/simplens-core/issues"
},
"homepage": "https://github.com/SimpleNotificationSystem/simplens-core#readme",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/express-rate-limit": "^5.1.3",
"@types/helmet": "^0.0.48",
"@types/ioredis": "^4.28.10",
"@types/kafkajs": "^1.8.2",
"@types/mongoose": "^5.11.96",
"@types/node": "^24.10.1",
"@types/supertest": "^6.0.3",
"@types/uuid": "^10.0.0",
"@vitest/coverage-v8": "^4.0.15",
"eslint": "^10.0.1",
"husky": "^9.1.7",
"ioredis-mock": "^8.13.1",
"mongodb-memory-server": "^10.4.1",
"nodemon": "^3.1.11",
"shadcn": "^3.8.5",
"supertest": "^7.1.4",
"tsc-alias": "^1.8.16",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0",
"vitest": "^4.0.15"
},
"dependencies": {
"axios": "^1.13.2",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"express-rate-limit": "^8.2.1",
"helmet": "^8.1.0",
"ioredis": "^5.8.2",
"kafkajs": "^2.2.4",
"mongoose": "^9.0.0",
"uuid": "^13.0.0",
"winston": "^3.18.3",
"winston-loki": "^6.1.3",
"yaml": "^2.8.2",
"zod": "^4.1.13"
}
}