-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
63 lines (63 loc) · 1.69 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
59
60
61
62
63
{
"name": "ctfbot",
"version": "1.0.0",
"description": "CTF embedded into a Discord bot",
"scripts": {
"start": "node-dev -r dotenv/config ./src/index.ts",
"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/rest": "^0.2.0-canary.0",
"@discordjs/voice": "^0.7.5",
"axios": "^0.26.1",
"bufferutil": "^4.0.6",
"csv-parse": "^5.0.4",
"date-fns": "^2.28.0",
"discord-api-types": "^0.31.2",
"discord.js": "discordjs/discord.js#v13",
"dotenv": "^12.0.3",
"erlpack": "discord/erlpack",
"express": "^4.18.0",
"pg": "^8.7.1",
"sequelize": "^6.13.0",
"utf-8-validate": "^5.0.8",
"winston": "^3.4.0",
"zlib-sync": "^0.1.7"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.2",
"@types/express": "^4.17.13",
"@types/node": "^17.0.8",
"@types/pg": "^8.6.4",
"@types/validator": "^13.7.1",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"node-dev": "^7.1.0",
"prettier": "^2.5.1",
"prettier-eslint-cli": "^5.0.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
}
}