-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.8 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.8 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
{
"name": "notifier",
"version": "1.0.0",
"description": "app for notification",
"main": "dist/server.js",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"start": "ts-node src/server.ts",
"dev": "nodemon src/server.ts",
"dev:debug": "nodemon --inspect src/server.ts",
"build-ts": "tsc",
"serve": "node dist/server.js",
"watch-node": "nodemon dist/server.js",
"watch-ts": "tsc -w",
"test": "ts-node test.ts"
},
"author": "devtron labs",
"license": "UNLICENSED",
"devDependencies": {
"@types/chai": "^5.2.1",
"@types/express": "^4.17.21",
"@types/mocha": "^10.0.10",
"@types/mustache": "^0.8.32",
"@types/node": "^24.0.0",
"@types/request": "^2.48.1",
"chai": "^5.2.0",
"mocha": "^11.7.5",
"node-fetch": "^2.6.8",
"nodemon": "^3.0.2",
"ts-node": "^10.7.0",
"tslint": "^5.16.0",
"typescript": "^4.8.3"
},
"dependencies": {
"axios": "^1.13.6",
"body-parser": "^1.20.4",
"express": "^4.22.1",
"js-yaml": "^3.14.2",
"json-rules-engine": "^2.3.6",
"moment-timezone": "^0.5.31",
"mustache": "^4.2.0",
"nats": "2.10.0",
"notifme-sdk": "^1.16.13",
"pg": "^8.2.1",
"prom-client": "^15.1.3",
"reflect-metadata": "^0.1.13",
"typeorm": "0.3.28",
"winston": "^3.2.1"
},
"overrides": {
"node-gcm": {
"axios": "1.13.6"
},
"diff": "^8.0.3",
"fast-xml-parser": "^5.5.7",
"form-data": "^4.0.5",
"lodash": "^4.17.23",
"nodemailer": "^7.0.13",
"node-forge": "^1.3.2",
"qs": "^6.15.0",
"serialize-javascript": "^7.0.5"
}
}