-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.18 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
{
"author": "Volkov Labs",
"dependencies": {
"body-parser": "^1.20.2",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"twilio": "^4.20.1",
"winston": "^3.13.0"
},
"description": "Twilio SMS Webhook for Grafana",
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.11.1",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"@volkovlabs/eslint-config": "^1.2.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.2",
"rollup": "^4.9.5",
"rollup-plugin-esbuild": "^6.1.0",
"typescript": "^5.3.3"
},
"license": "Apache-2.0",
"main": "index.js",
"name": "sms-webhook",
"scripts": {
"build": "rollup -c",
"clean": "rimraf ./dist",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"lint:fix": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"prettier": "prettier . --write",
"server": "node dist/index.js",
"start": "docker compose build && docker compose up",
"stop": "docker-compose down",
"typecheck": "tsc --emitDeclarationOnly false --noEmit"
},
"version": "1.2.0"
}