-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
69 lines (69 loc) · 1.75 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
61
62
63
64
65
66
67
68
69
{
"name": "freenom-autorenew-domains",
"version": "1.1.0",
"description": "A scraper built with puppeteer to renew free domains on Freenom",
"author": "Сорок два <sorokdva.developer@gmail.com>",
"private": false,
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"files": [
"build"
],
"scripts": {
"build": "run-p build:*",
"build:all": "tsc -d",
"describe": "npm-scripts-info",
"dev": "ts-node-esm src/main.ts",
"release": "standard-version -s",
"start": "node dist/index.js",
"test": "run-p test:**",
"test:lint": "eslint 'src/**/*.ts' --fix",
"vulnerabilities": "snyk monitor",
"watch": "nodemon --exec ts-node-esm src/main.ts"
},
"lint-staged": {
"src/**/*.ts": [
"eslint"
]
},
"dependencies": {
"@types/dotenv": "^6.1.1",
"@types/node": "^18.7.13",
"@discordx/importer": "^1.2.0",
"@discordx/pagination": "^3.0.0",
"discord.js": "^14.8.0",
"discordx": "^11.1.12",
"dotenv": "^16.0.2",
"cron": "^1.8.2",
"discord-bot-webhook": "^1.0.4",
"fs": "0.0.1-security",
"puppeteer": "^19.7.3",
"reflect-metadata": "^0.1.13",
"request": "^2.88.0",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"@types/node": "^18.7.14",
"@types/cron": "^1.7.2",
"@types/puppeteer": "^5.4.6",
"@types/sqlite3": "^3.1.8",
"eslint": "^7.28.0",
"eslint-config-recommended": "^4.1.0",
"eslint-plugin-mocha": "^10.1.0",
"npm-run-all": "4.1.5",
"prettier": "^2.7.1",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
"tsc-watch": "^5.0.3",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.8.2"
},
"_moduleAliases": {
"@": "dist"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=16.0.0"
}
}