forked from EddieHubCommunity/EddieBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.73 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
{
"name": "eddiehub",
"version": "1.3.1",
"description": "Discord bot built using NestJS",
"author": "",
"private": true,
"license": "MIT",
"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 install ; fi",
"test": "jest"
},
"dependencies": {
"@discordjs/rest": "^1.0.1",
"alex": "^9.1.1",
"discord.js": "^14.1.2",
"dotenv": "^16.0.1",
"express": "^4.18.2",
"mongoose": "^6.4.6",
"rimraf": "^3.0.2",
"typo-js-ts": "^2.0.4",
"winston": "^3.7.2"
},
"devDependencies": {
"@babel/preset-env": "^7.23.2",
"@babel/preset-typescript": "^7.23.2",
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^12.1.1",
"@jest/globals": "^29.7.0",
"@types/alex": "^9.1.0",
"@types/express": "^4.17.20",
"@types/jest": "^29.5.6",
"@types/node": "^14.18.63",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^6.0.0",
"jest": "^29.7.0",
"prettier": "^2.2.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}