-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
66 lines (66 loc) · 1.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
{
"name": "wheatley",
"version": "0.1.0",
"description": "",
"author": "",
"type": "module",
"dependencies": {
"@discordjs/rest": "^2.4.2",
"@sentry/node": "^8.47.0",
"@types/stack-trace": "^0.0.33",
"any-ascii": "^0.3.2",
"axios": "^1.7.9",
"chalk": "<5.0.0",
"deep-equal": "^2.2.3",
"diff": "^7.0.0",
"discord.js": "^14.17.2",
"dismark": "^0.1.1",
"express": "^4.21.2",
"moment": "^2.30.1",
"mongodb": "^6.12.0",
"prom-client": "^15.1.3",
"stack-trace": "^1.0.0-pre2",
"typescript": "^5.7.2",
"xxhashjs": "^0.2.2"
},
"scripts": {
"start": "tsc && unbuffer node build/src/main.js 2>&1 | tee -a log.txt",
"lint": "eslint src",
"lint-files": "eslint --color",
"prepare": "husky install",
"test": "vitest run",
"format": "prettier src test --write",
"format-check": "prettier src test --check",
"format-files": "prettier src test --write --ignore-unknown",
"ts-check": "tsc --noEmit",
"build": "tsc"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "~9.17.0",
"@types/deep-equal": "^1.0.4",
"@types/diff": "^6.0.0",
"@types/express": "^5.0.0",
"@types/node": "^22.10.4",
"@types/node-fetch": "^2.6.12",
"@types/ws": "^8.5.13",
"@types/xxhashjs": "^0.2.4",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"eslint": "~9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.14.0",
"husky": "^9.1.7",
"linkedom": "^0.18.6",
"lint-staged": "^15.3.0",
"node-fetch": "^3.3.2",
"prettier": "3.4.2",
"vitest": "^2.1.8"
},
"lint-staged": {
"*.[jt]s": [
"npm run lint-files --"
]
}
}