forked from jaoafa/jaotan.ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.11 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
{
"name": "jaotan.ts",
"version": "0.0.0",
"description": "jao Gamers Club Official Discord Bot for TypeScript",
"homepage": "https://github.com/jaoafa/jaotan.ts",
"bugs": {
"url": "https://github.com/jaoafa/jaotan.ts/issues"
},
"license": "MIT",
"author": "jao Community",
"private": true,
"main": "dist/main.js",
"repository": {
"type": "git",
"url": "[email protected]:jaoafa/jaotan.ts.git"
},
"scripts": {
"dev": "tsx watch ./src/main.ts",
"lint:prettier": "prettier --check src",
"lint:eslint": "eslint . -c eslint.config.mjs",
"start": "tsx ./src/main.ts",
"lint:tsc": "tsc",
"fix": "run-z fix:prettier fix:eslint",
"fix:eslint": "eslint . -c eslint.config.mjs --fix",
"test": "jest --runInBand --passWithNoTests --detectOpenHandles --forceExit",
"fix:prettier": "prettier --write src",
"lint": "run-z lint:prettier,lint:eslint,lint:tsc",
"generate-schema": "typescript-json-schema --required src/config.ts ConfigInterface -o schema/Configuration.json"
},
"devDependencies": {
"@book000/eslint-config": "1.7.28",
"@book000/node-utils": "1.13.203",
"@napi-rs/canvas": "0.1.53",
"@types/jest": "29.5.12",
"@types/node": "20.14.14",
"@types/node-cron": "3.0.11",
"axios": "1.7.3",
"cheerio": "1.0.0-rc.12",
"detectlanguage": "2.1.0",
"discord.js": "14.15.3",
"eslint": "9.8.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-n": "17.10.1",
"eslint-plugin-promise": "7.0.0",
"jest": "29.7.0",
"jest-expect-message": "1.1.3",
"node-cron": "3.0.3",
"prettier": "3.3.3",
"run-z": "2.0.0",
"ts-jest": "29.2.4",
"tsx": "4.16.5",
"typescript": "5.4.5",
"typescript-json-schema": "0.64.0"
},
"packageManager": "[email protected]",
"jest": {
"moduleFileExtensions": [
"js",
"ts"
],
"testMatch": [
"**/*.test.ts"
],
"transform": {
"^.+\\.ts$": [
"ts-jest",
{
"tsconfig": "tsconfig.json"
}
]
},
"setupFilesAfterEnv": [
"jest-expect-message"
]
}
}