forked from EddieHubCommunity/EddieBot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.42 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.42 KB
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
{
"name": "eddiehub",
"version": "1.2.4",
"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"
},
"dependencies": {
"@discordjs/rest": "^1.0.1",
"alex": "^9.1.1",
"discord.js": "^14.1.2",
"dotenv": "^16.0.1",
"mongoose": "^6.3.6",
"rimraf": "^3.0.2",
"winston": "^3.7.2"
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@types/alex": "^9.1.0",
"@types/node": "^14.14.36",
"@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",
"prettier": "^2.2.1",
"typescript": "^4.7.3"
}
}