forked from CarelessInternet/Ticketer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.15 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
{
"name": "ticketer",
"version": "2.9.1",
"description": "Ticketing bot using threads and text channels!",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"scripts": {
"start": "NODE_ENV=development node .",
"production": "NODE_ENV=production node .",
"mysql": "node ./dist/src/other/mysql.js",
"deploy": "node ./dist/src/other/deploy.js",
"test": "node ./dist/src/other/test.js",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint . --ext .ts"
},
"author": "CarelessInternet",
"license": "GPL-3.0",
"dependencies": {
"@discordjs/builders": "^0.16.0",
"@discordjs/rest": "^0.5.0",
"chalk": "^4.1.2",
"discord-api-types": "^0.35.0",
"discord.js": "^13.14.0",
"dotenv": "^16.0.1",
"fast-glob": "^3.2.11",
"mysql2": "^2.3.3",
"topgg-autoposter": "^2.0.1"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"bufferutil": "^4.0.6",
"eslint": "^8.18.0",
"prettier": "^2.7.1",
"typescript": "^4.7.4",
"utf-8-validate": "^5.0.9",
"zlib-sync": "^0.1.7"
}
}