This repository has been archived by the owner on Oct 10, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 134
/
package.json
61 lines (61 loc) · 1.74 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
{
"name": "eddiehub",
"version": "1.8.8",
"description": "Discord bot built using NestJS",
"author": "",
"private": true,
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/EddieHubCommunity/EddieBot.git"
},
"bugs": {
"url": "https://github.com/EddieHubCommunity/EddieBot/issues"
},
"homepage": "https://github.com/EddieHubCommunity/EddieBot#readme",
"scripts": {
"prebuild": "rimraf prod",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "node -r dotenv/config prod/main.js",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"lint:fix": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"prepare": "if test \"$HUSKY\" != \"0\" ; then husky ; fi",
"test": "node --experimental-vm-modules node_modules/.bin/jest"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@discordjs/rest": "^2.4.0",
"alex": "^11.0.1",
"discord.js": "^14.16.2",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"mongoose": "^8.6.3",
"rimraf": "^6.0.1",
"typo-js-ts": "^2.0.4",
"winston": "^3.14.2"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/js": "^9.9.0",
"@jest/globals": "^29.7.0",
"@total-typescript/tsconfig": "^1.0.4",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.13",
"@types/node": "^20.16.5",
"eslint": "^9.11.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.6",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"typescript-eslint": "^8.6.0"
}
}