forked from ArrowM/Queue-Bot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.1 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.1 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
{
"name": "queue-bot",
"version": "1.0.0",
"description": "A Discord bot!",
"main": "build/bot.js",
"scripts": {
"build": "tsc -p .",
"format": "eslint src/** --fix --no-error-on-unmatched-pattern",
"start": "cd build && node bot.js",
"restart": "tsc -p . && pm2 stop all && pm2 flush && pm2 start all"
},
"keywords": [],
"author": "Arrow",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"bufferutil": "^4.0.3",
"dblapi.js": "^2.4.1",
"discord.js": "12.5.0",
"knex": "^0.95.5",
"libsodium-wrappers": "^0.7.9",
"node-gyp": "^8.0.0",
"pg": "^8.6.0",
"utf-8-validate": "^5.0.5",
"zlib-sync": "^0.1.7"
},
"devDependencies": {
"@types/node": "^15.0.2",
"@typescript-eslint/parser": "^4.23.0",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"prettier": "^2.3.0",
"typescript": "^4.2.4"
}
}