-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.38 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
{
"dependencies": {
"always-tail": "^0.2.0",
"basic-ftp": "^5.0.2",
"canvas": "^2.11.0",
"crypto": "^1.0.1",
"csprng": "^0.1.2",
"dayjs": "^1.11.7",
"discord-api-types": "^0.36.1",
"discord.js": "^14.9.0",
"dotenv": "^16.0.1",
"geoip-lite": "^1.4.6",
"lowdb": "^1.0.0",
"request": "^2.88.2",
"tail": "^2.2.4"
},
"name": "mafia-bot",
"version": "0.5.5D",
"description": "Bot for MAFIA PR Discord server",
"main": "index.js",
"scripts": {
"start": "npm run build && node bot.js",
"dev": "nodemon --ignore logs/ bot.js",
"lint": "eslint .",
"test": "npm run build && NODE_OPTIONS=--experimental-vm-modules npx jest",
"build": "tsc functions/logs/*.ts --module node16 && tsc functions/logs/commands/*.ts --module node16",
"cleanup": "cd functions/logs/ && find . -name '*.js' -delete"
},
"repository": {
"type": "git",
"url": "none"
},
"keywords": [
"none"
],
"author": "Max_",
"type": "module",
"license": "ISC",
"devDependencies": {
"@babel/eslint-parser": "^7.21.3",
"@babel/plugin-syntax-import-assertions": "^7.20.0",
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"eslint": "^8.38.0",
"eslint-plugin-jest": "^27.2.1",
"jest": "^29.5.0",
"nodemon": "^2.0.19",
"typescript": "^5.0.4"
}
}