This repository has been archived by the owner on Apr 9, 2023. It is now read-only.
forked from sapphiredev/resource-webhooks
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.84 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": "resource-webhooks",
"version": "1.0.0",
"description": "A collection of webhooks to update our rules channel on Discord",
"contributors": [
"Crawl <icrawltogo@gmail.com>",
"Favna <support@favware.tech>"
],
"license": "MIT",
"private": true,
"main": "dist/resource-webhooks.js",
"type": "module",
"scripts": {
"lint": "eslint src scripts --ext mjs,ts --fix",
"format": "prettier --write \"{src,scripts}/**/*.{mjs,ts}\"",
"update": "yarn upgrade-interactive",
"deploy": "node --unhandled-rejections=strict dist/resource-webhooks.js",
"build": "tsc -b src",
"clean": "tsc -b src --clean",
"watch": "tsc -b src --watch"
},
"devDependencies": {
"@commitlint/cli": "^17.5.1",
"@commitlint/config-angular": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@sapphire/eslint-config": "^4.3.8",
"@sapphire/fetch": "^2.4.1",
"@sapphire/prettier-config": "^1.4.5",
"@sapphire/ts-config": "^3.3.4",
"@types/common-tags": "^1.8.1",
"@types/node": "^18.15.11",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"common-tags": "^1.8.2",
"cz-conventional-changelog": "^3.3.0",
"discord-api-types": "^0.37.37",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.1",
"prettier": "^2.8.7",
"pretty-quick": "^3.1.3",
"typescript": "^4.9.5"
},
"resolutions": {
"ansi-regex": "^5.0.1",
"minimist": "^1.2.8"
},
"engines": {
"node": ">=16"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{mjs,js,ts}": "eslint --fix --ext mjs,js,ts"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"prettier": "@sapphire/prettier-config",
"packageManager": "yarn@3.5.0"
}