-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.04 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.04 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
{
"name": "houndbot",
"version": "0.1.0",
"description": "A discord bot",
"main": "index.js",
"scripts": {
"start": "tsc && node dist/index.js",
"watch": "nodemon --watch dist --exec \"node dist/index.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/houndour/houndbot.git"
},
"keywords": [
"discord",
"bot",
"discord-bot"
],
"author": "Houndour",
"license": "MIT",
"bugs": {
"url": "https://github.com/houndour/houndbot/issues"
},
"homepage": "https://github.com/houndour/houndbot#readme",
"dependencies": {
"@types/bluebird": "^3.5.27",
"@types/dotenv": "^6.1.1",
"@types/node": "^12.0.12",
"@types/validator": "^10.11.1",
"axios": "^0.21.2",
"discord.js": "^11.5.1",
"dotenv": "^8.0.0",
"lodash": "^4.17.21",
"log4js": "^6.4.0",
"moment": "^2.24.0",
"reflect-metadata": "^0.1.13",
"sequelize": "^5.15.1",
"sequelize-typescript": "^1.0.0-beta.3"
},
"devDependencies": {
"nodemon": "^1.19.1",
"sqlite3": "^4.0.9"
}
}