This repository has been archived by the owner on Jun 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.53 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": "nodebot",
"version": "4.0.0",
"description": "NodeBot using discord.js v13 with slash commmands and economy system",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"start": "NODE_ENV=development node .",
"production": "NODE_ENV=production node .",
"mysql": "node ./dist/other/mysql.js",
"deploy": "node ./dist/other/deploy.js",
"test": "node ./dist/other/test.js",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint . --ext .ts"
},
"author": "CarelessInternet",
"license": "GPL-3.0",
"dependencies": {
"@discordjs/builders": "^0.9.0",
"@discordjs/rest": "^0.2.0-canary.0",
"@vitalets/google-translate-api": "^7.0.0",
"chalk": "^4.1.2",
"discord-api-types": "^0.24.0",
"discord-tictactoe": "^2.1.1",
"discord.js": "^13.3.1",
"discord.js-games": "^1.1.0",
"dotenv": "^10.0.0",
"fast-glob": "^3.2.7",
"lorem-ipsum": "^2.0.4",
"minecraft-server-util": "^5.2.5",
"mysql2": "^2.3.3",
"node-fetch": "^2.6.6",
"qrcode": "^1.5.0",
"spotify-web-api-node": "^5.0.2",
"topgg-autoposter": "^2.0.1"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^17.0.3",
"@types/node-fetch": "^2.5.12",
"@types/qrcode": "^1.4.2",
"@types/spotify-web-api-node": "^5.0.4",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"ansi-regex": ">=5.0.1",
"bufferutil": "^4.0.5",
"eslint": "^8.5.0",
"prettier": "^2.5.1",
"typescript": "^4.5.4",
"utf-8-validate": "^5.0.7",
"zlib-sync": "^0.1.7"
}
}