-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
35 lines (35 loc) · 910 Bytes
/
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
{
"name": "status-pushover",
"version": "1.1.1",
"main": "index.ts",
"scripts": {
"build": "npx tsc",
"start": "npx tsc && node dist/index.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\"",
"lint": "eslint . --ext .ts"
},
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"axios": "^1.3.4",
"axios-curlirize": "^2.0.0",
"date-fns": "^2.29.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"node-cache": "^5.1.2",
"pushover-js": "^1.3.2",
"telegraf": "^4.11.2"
},
"devDependencies": {
"@types/axios-curlirize": "^1.3.2",
"@types/express": "^4.17.17",
"@types/node": "^18.14.1",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"concurrently": "^7.6.0",
"eslint": "^8.35.0",
"nodemon": "^2.0.20",
"typescript": "^4.9.5"
}
}