-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
103 lines (103 loc) · 2.99 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "dragonite",
"version": "1.0.0",
"description": "A Pokémon information Discord bot built around Discord Interactions.",
"author": "Jeroen Claassens <support@favware.tech>",
"license": "Apache-2.0",
"module": "dist/dragonite.js",
"private": true,
"type": "module",
"imports": {
"#lib/*": "./dist/lib/*.js",
"#root/*": "./dist/*.js",
"#utils/*": "./dist/lib/util/*.js",
"#gql/*": "./dist/lib/gql/*.js",
"#lib/env": "./dist/lib/env/index.js"
},
"scripts": {
"start": "node --preserve-symlinks --enable-source-maps dist/dragonite.js",
"lint": "eslint src --ext ts --fix",
"prettier": "prettier --ignore-path=.prettierignore",
"format": "prettier --write .",
"build": "tsup",
"watch": "tsup --watch",
"clean": "rimraf dist/",
"typecheck": "tsc -b src",
"dev": "tsup --watch --onSuccess \"yarn start\""
},
"dependencies": {
"@discordjs/builders": "^1.9.0",
"@favware/graphql-pokemon": "^8.6.1",
"@influxdata/influxdb-client": "^1.35.0",
"@influxdata/influxdb-client-apis": "^1.35.0",
"@sapphire/decorators": "^6.1.1",
"@sapphire/discord.js-utilities": "^7.3.1",
"@sapphire/fetch": "^3.0.5",
"@sapphire/framework": "^5.3.1",
"@sapphire/plugin-logger": "^4.0.2",
"@sapphire/plugin-scheduled-tasks": "^10.0.2",
"@sapphire/utilities": "^3.18.1",
"@skyra/env-utilities": "^1.3.0",
"@skyra/jaro-winkler": "^1.1.1",
"@skyra/start-banner": "^2.0.1",
"binarytf": "^2.1.3",
"bufferutil": "^4.0.8",
"colorette": "^2.0.20",
"discord.js": "^14.16.3",
"figlet": "^1.8.0",
"gradient-string": "^3.0.0",
"ioredis": "^5.4.2",
"utf-8-validate": "^6.0.5",
"ws": "^8.18.0",
"zlib-sync": "^0.1.9"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@sapphire/eslint-config": "^5.0.5",
"@sapphire/prettier-config": "^2.0.0",
"@sapphire/ts-config": "^5.0.1",
"@swc/core": "^1.10.1",
"@types/figlet": "^1.7.0",
"@types/gradient-string": "^1.1.6",
"@types/node": "22.10.2",
"@types/ws": "^8.5.13",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"lint-staged": "^15.2.11",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"tsup": "^8.3.5",
"typescript": "~5.4.5"
},
"resolutions": {
"ansi-regex": "^5.0.1",
"minimist": "^1.2.8"
},
"engines": {
"node": ">=16.6.0",
"npm": ">=7.24.2"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"eslintConfig": {
"extends": "@sapphire"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write",
"*.{mjs,js,ts}": "eslint --fix --ext mjs,js,ts"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"packageManager": "yarn@4.5.3"
}