-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.23 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
{
"name": "fjordfursbot",
"version": "0.8.2",
"description": "A Discord bot for the FjordFurs server",
"main": "out/app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"run": "node out/app.js",
"start": "npm run-script build && npm run-script run",
"migrate": "db-migrate up",
"dockerrun": "db-migrate up --env docker && node out/app.js",
"format": "prettier --write \"src/**/*\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/KHTangent/fjordfursbot.git"
},
"keywords": [
"discord",
"typescript"
],
"author": "KHTangent",
"license": "MIT",
"bugs": {
"url": "https://github.com/KHTangent/fjordfursbot/issues"
},
"homepage": "https://github.com/KHTangent/fjordfursbot#readme",
"dependencies": {
"@discordjs/rest": "^1.3.0",
"db-migrate": "^0.11.13",
"db-migrate-sqlite3": "^1.0.2",
"discord.js": "^14.0.3",
"dotenv": "^16.0.3",
"node-emoji": "^1.11.0",
"sqlite": "^4.0.23",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"@types/node": "^18.11.9",
"@types/node-emoji": "^1.8.1",
"@types/sqlite3": "^3.1.8",
"@types/ws": "^7.2.2",
"prettier": "2.4.1",
"typescript": "^4.4.3"
},
"overrides": {
"discord-api-types": "0.37.14"
}
}