-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.49 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
{
"name": "test-area",
"license": "MIT",
"author": "Glenn <[email protected]> (https://not-tech.support)",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/promise"
},
{
"type": "patreon",
"url": "https://patreon.com/promises"
},
"http://paypal.me/nottechsupport"
],
"main": "build",
"scripts": {
"build": "tsc",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"start": "node .",
"test": "jest",
"watch": "tsc -w"
},
"dependencies": {
"@sapphire/type": "2.6.0",
"@typegoose/typegoose": "12.10.1",
"bufferutil": "4.0.9",
"dedent": "1.5.3",
"discord.js": "14.16.3",
"dotenv": "16.4.7",
"friendly-words": "1.3.1",
"match-sorter": "8.0.0",
"mongoose": "8.9.3",
"winston": "3.17.0",
"winston-daily-rotate-file": "5.0.0",
"zlib-sync": "0.1.9"
},
"devDependencies": {
"@tsconfig/node22": "22.0.0",
"@tsconfig/strictest": "2.0.5",
"@types/friendly-words": "1.2.2",
"@types/jest": "29.5.14",
"@types/node": "22.10.5",
"eslint": "9.17.0",
"eslint-config-promise": "github:promise/eslint-config",
"jest": "29.7.0",
"ts-jest": "29.2.5",
"typescript": "5.7.2"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testPathIgnorePatterns": [
"<rootDir>/build/",
"<rootDir>/node_modules/"
]
},
"packageManager": "[email protected]"
}