forked from sapphiredev/gemboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.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
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
{
"name": "gemboard",
"version": "1.0.0",
"description": "A private starboard bot for the Sapphire server.",
"author": "@sapphire",
"license": "MIT",
"main": "dist/gemboard.js",
"private": true,
"type": "module",
"imports": {
"#lib/*": "./dist/lib/*.js",
"#root/*": "./dist/*.js",
"#utils/*": "./dist/lib/util/*.js",
"#lib/env": "./dist/lib/env/index.js"
},
"scripts": {
"start": "node --preserve-symlinks --enable-source-maps dist/gemboard.js",
"lint": "eslint src --ext ts --fix",
"prettier": "prettier --ignore-path=.prettierignore",
"format": "prettier --write .",
"prisma:generate": "prisma generate",
"build": "tsup",
"watch": "tsup --watch",
"clean": "rimraf dist/",
"typecheck": "tsc -b src",
"dev": "tsup --watch --onSuccess \"yarn start\""
},
"dependencies": {
"@prisma/client": "^5.18.0",
"@sapphire/decorators": "^6.1.0",
"@sapphire/framework": "^5.2.1",
"@sapphire/plugin-logger": "^4.0.2",
"@sapphire/utilities": "^3.17.0",
"@skyra/env-utilities": "^1.3.0",
"@skyra/start-banner": "^2.0.1",
"bufferutil": "^4.0.8",
"colorette": "^2.0.20",
"discord.js": "^14.15.3",
"figlet": "^1.7.0",
"gradient-string": "^2.0.2",
"utf-8-validate": "^6.0.4",
"ws": "^8.18.0",
"zlib-sync": "^0.1.9"
},
"devDependencies": {
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@sapphire/eslint-config": "^5.0.5",
"@sapphire/prettier-config": "^2.0.0",
"@sapphire/ts-config": "^5.0.1",
"@swc/core": "^1.7.18",
"@types/figlet": "^1.5.8",
"@types/gradient-string": "^1.1.6",
"@types/node": "^20.16.1",
"@types/ws": "^8.5.12",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"lint-staged": "^15.2.9",
"prettier": "^3.3.3",
"prettier-plugin-prisma": "^5.0.0",
"prisma": "^5.18.0",
"rimraf": "^6.0.1",
"tsup": "^8.2.4",
"typescript": "~5.4.5"
},
"engines": {
"node": ">=16.6.0",
"npm": ">=7.24.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sapphiredev/gemboard.git"
},
"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"
}
},
"prettier": "@sapphire/prettier-config",
"packageManager": "[email protected]"
}