-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 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
{
"name": "hotline",
"version": "1.0.0",
"description": "Discord management automation",
"main": "build/server.js",
"scripts": {
"build:compile": "tsc",
"build:clean": "rimraf dist",
"build:eslint": "eslint dist/** --quiet --fix",
"build:prettier": "prettier dist/** --log-level error --ignore-unknown --write",
"build": "npm run build:clean && npm run build:compile && npm run build:eslint && npm run build:prettier",
"debug": "tsx --watch --inspect-brk src/server.ts",
"dev": "tsx --watch src/server.ts"
},
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"axios": "^1.7.9",
"body-parser": "^1.20.3",
"discord.js": "^14.14.1",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"openai": "^4.82.0",
"twilio": "^5.4.3"
},
"devDependencies": {
"@types/body-parser": "^1.19.5",
"@types/express": "^5.0.0",
"@types/node": "^20.10.2",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.31.0",
"prettier": "^3.1.0",
"rimraf": "^5.0.5",
"tsx": "^4.6.1",
"typescript": "^5.3.2"
}
}