-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.63 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
{
"name": "literally-discord-bot",
"displayName": "Literally",
"version": "1.0.0",
"description": " A Discord bot for various text-based games",
"main": "build/src/app.js",
"scripts": {
"start": "node build/src/main.js",
"build": "rimraf build/ && tsc && cp .env build/",
"dev": "ts-node-dev src/app.ts --ignore-watch",
"dev+build": "nodemon --ext ts --exec 'rimraf build/ && tsc && cp .env build/ && npm start'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mettlex/literally-discord-bot.git"
},
"keywords": [
"discord-bot",
"word"
],
"author": "Mettle X",
"license": "MIT",
"bugs": {
"url": "https://github.com/mettlex/literally-discord-bot/issues"
},
"homepage": "https://github.com/mettlex/literally-discord-bot#readme",
"devDependencies": {
"@types/common-tags": "^1.8.1",
"@types/glob": "^8.1.0",
"@types/got": "^9.6.12",
"@types/node": "^20.2.5",
"@types/pino": "^7.0.4",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"eslint": "^8.42.0",
"eslint-config-google": "^0.14.0",
"nodemon": "^2.0.22",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.1.3"
},
"dependencies": {
"@top-gg/sdk": "^3.1.5",
"common-tags": "^1.8.2",
"date-fns": "^2.30.0",
"discord.js": "^14.14.1",
"dotenv": "^16.1.3",
"glob": "^10.2.6",
"got": "^11.8.2",
"mongoose": "^7.2.2",
"pino": "^8.14.1",
"pino-pretty": "^10.0.0",
"slash-create": "^5.12.0",
"source-map-support": "^0.5.21",
"unb-api": "^1.3.1"
}
}