forked from devtron-labs/notifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.2 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
{
"name": "notifier",
"version": "1.0.0",
"description": "app for notification",
"main": "dist/server.js",
"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": {
"node-fetch": "^2.6.8",
"nodemon": "^3.0.2",
"ts-node": "^10.7.0",
"tslint": "^5.16.0",
"typescript": "^4.8.3"
},
"dependencies": {
"@types/express": "^4.16.1",
"@types/mustache": "^0.8.32",
"@types/node": "^12.0.2",
"@types/request": "^2.48.1",
"axios": "1.6.8",
"express": "^4.19.2",
"js-yaml": "^3.13.1",
"json-rules-engine": "^2.3.6",
"moment-timezone": "^0.5.31",
"mustache": "^3.0.1",
"notifme-sdk": "^1.14.1",
"pg": "^8.2.1",
"reflect-metadata": "^0.1.13",
"typeorm": "0.3.17",
"winston": "^3.2.1"
}
}