forked from DaveAldon/bravo-discord-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.16 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
78
79
80
81
82
83
84
85
86
87
88
{
"name": "bravo-bentley",
"version": "1.0.0",
"description": "Discord bot written in Typescript and discord.js hosted on Heroku",
"main": "index.js",
"engines": {
"node": "16.7.0"
},
"scripts": {
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix",
"prestart:dev": "npm run build",
"start:dev": "nodemon build/index.js",
"prebuild": "rimraf ./build",
"build": "tsc",
"prestart": "npm run build",
"start": "node build/index.js",
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DaveAldon/bravo-discord-bot.git"
},
"keywords": [
"discord",
"typescript",
"bot",
"heroku"
],
"author": "Dave Aldon",
"license": "ISC",
"bugs": {
"url": "https://github.com/DaveAldon/bravo-discord-bot/issues"
},
"homepage": "https://github.com/DaveAldon/bravo-discord-bot/blob/main/README.md",
"devDependencies": {
"@types/node": "^16.7.10",
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@typescript-eslint/parser": "^3.6.0",
"eslint": "^7.4.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "1.19.1"
},
"dependencies": {
"@discordjs/builders": "^0.6.0",
"@discordjs/rest": "^0.1.0-canary.0",
"@types/express": "^4.17.7",
"@types/jest": "^26.0.24",
"axios": "^0.21.1",
"discord-api-types": "^0.22.0",
"discord-slash-commands-client": "^1.2.1",
"discord.js": "^13.1.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"got": "^11.8.2",
"jest": "^27.0.6",
"jsdom": "^16.4.0",
"nodemon": "^2.0.4",
"requests": "^0.3.0",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.4",
"ts-node": "^8.10.2",
"typescript": "^4.3.5"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"coverageThreshold": {
"global": {
"branches": 50,
"functions": 50,
"lines": 50,
"statements": 50
}
}
}
}