This repository has been archived by the owner on Jun 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.5 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
{
"name": "wulkanowy-discord-bot",
"version": "1.0.0",
"description": "Support bot for Wulkanowy Discord server",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint -c .eslintrc.json --ext .ts src/**",
"lint:fix": "eslint -c .eslintrc.json --ext .ts src/** --fix",
"compile": "tsc --noEmit",
"start": "node --tls-min-v1.3 -r ts-node/register src/index.ts"
},
"author": "Dominik Korsa <dominik.korsa@gmail.com> (https://github.com/dominik-korsa)",
"contributors": [
"doteq <doteeqq@gmail.com>",
"luncenok <idziejczak3@gmail.com>",
"mklkj"
],
"license": "MIT",
"engines": {
"node": "16.x"
},
"dependencies": {
"@types/cheerio": "^0.22.31",
"@types/fuzzyset.js": "0.0.2",
"@types/lodash": "^4.14.190",
"@types/moment-timezone": "^0.5.30",
"@types/node": "^18.11.9",
"@types/voca": "^1.4.2",
"@types/ws": "^8.5.3",
"cheerio": "1.0.0-rc.12",
"discord.js": "^14.7.0",
"dotenv": "^16.0.3",
"fuzzyset.js": "^1.0.7",
"got": "^11.8.3",
"jjg-ping": "^1.0.3",
"lodash": "^4.17.21",
"moment-timezone": "^0.5.39",
"ping": "^0.4.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.3",
"voca": "^1.4.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.28.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0"
}
}