forked from acmucsd/ctfbot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.44 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
{
"name": "ctfbot",
"version": "1.0.0",
"description": "CTF embedded into a Discord bot",
"scripts": {
"start": "ts-node-dev --respawn -r dotenv/config ./src",
"start:prod": "node ./dist/index.js",
"build": "npm run build-ts",
"build-ts": "tsc",
"clean": "rm -rf ./dist",
"lint": "eslint --ext .ts ./src",
"lint-fix": "eslint --ext .ts ./src --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/acmucsd/ctfbot.git"
},
"keywords": [
"CTF",
"discord",
"typescript"
],
"author": "ACM Cyber at UC San Diego",
"license": "MIT",
"bugs": {
"url": "https://github.com/acmucsd/ctfbot/issues"
},
"homepage": "https://github.com/acmucsd/ctfbot#readme",
"dependencies": {
"@discordjs/opus": "^0.3.3",
"bufferutil": "^4.0.3",
"date-fns": "^2.18.0",
"discord.js": "^12.5.1",
"dotenv": "^8.2.0",
"erlpack": "github:discord/erlpack",
"libsodium-wrappers": "^0.7.8",
"pg": "^8.5.1",
"utf-8-validate": "^5.0.4",
"zlib-sync": "^0.1.7"
},
"devDependencies": {
"@types/node": "^14.14.20",
"@types/pg": "^7.14.7",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"eslint": "^7.17.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "^2.2.1",
"ts-node-dev": "^1.1.1",
"typescript": "^4.1.3"
}
}