-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.06 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
{
"name": "altervista-backup-automation",
"version": "1.0.0",
"description": "A script that download a backup of your's Altervista MySQL database and sends you a telegram message as a notification (using a Bot)",
"main": "index.ts",
"author": "Sandro Baccega",
"license": "MIT",
"scripts": {
"start": "ts-node src/index.ts",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"build-docker": "docker build -t altervista-backup-automation ."
},
"prettier": {
"semi": false,
"trailingComma": "es5",
"singleQuote": true,
"jsxBracketSameLine": true,
"tabWidth": 2,
"printWidth": 120
},
"dependencies": {
"@types/dotenv": "^8.2.0",
"@types/node": "^13.13.52",
"@types/node-fetch": "^2.6.1",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"crypto": "^1.0.1",
"dotenv": "^8.6.0",
"eslint": "^7.32.0",
"moment": "^2.29.1",
"node-fetch": "^2.6.7",
"playwright": "^1.19.2",
"ts-node": "^8.8.1",
"typescript": "^4.6.2"
},
"devDependencies": {}
}