-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
60 lines (60 loc) · 1.56 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "ovh-availability-checker",
"version": "2.1.0",
"description": "OVH Servers Availability Checker",
"main": "src/index.ts",
"type": "module",
"scripts": {
"start": "ts-node --esm src/index.ts",
"scrape": "ts-node --esm src/scrape.ts",
"build": "tsc",
"lint": "xo",
"format": "prettier --write .",
"cleanup": "rm -rf build/"
},
"author": "Jorge Barnaby <jorge {dot} barnaby {at} gmail {dot} com",
"license": "MIT",
"repository": "yorch/ovh-availability-checker",
"dependencies": {
"common-tags": "1.8.2",
"dotenv": "16.4.1",
"env-var": "7.4.1",
"got": "12.6.0",
"jsonfile": "6.1.0",
"load-json-file": "7.0.1",
"lodash": "4.17.21",
"node-cron": "3.0.3",
"node-telegram-bot-api": "0.64.0",
"nodemailer": "6.9.8",
"pino": "8.17.2",
"pino-dataset-transport": "1.0.1",
"pino-pretty": "10.3.1",
"pushbullet": "3.0.0",
"scrape-it": "6.1.0",
"simple-sms-sender": "0.1.1"
},
"devDependencies": {
"@tsconfig/node18-strictest": "1.0.0",
"@types/common-tags": "1.8.4",
"@types/jsonfile": "6.1.4",
"@types/lodash": "4.14.199",
"@types/node": "20.11.7",
"@types/node-cron": "3.0.11",
"@types/node-telegram-bot-api": "0.61.7",
"@types/nodemailer": "6.4.14",
"@types/prettier": "3.0.0",
"@types/xo": "0.39.5",
"prettier": "3.2.4",
"ts-node": "10.9.2",
"typescript": "4.9.5",
"xo": "0.54.1"
},
"engineStrict": true,
"engines": {
"node": ">= 16.0.0"
},
"packageManager": "[email protected]",
"xo": {
"prettier": true
}
}