-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.24 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": "crowbartools-discord-bot",
"version": "2.0.0",
"description": "A bot that helps service the Crowbar Tools Discord server.",
"main": "dist/main.js",
"dependencies": {
"axios": "^1.7.4",
"discord.js": "^14.15.3",
"dotenv": "^16.4.5",
"luxon": "^3.5.0",
"lz-string": "^1.5.0",
"node-cache": "^5.1.2",
"openai": "^4.56.0",
"ts-case-convert": "^2.0.7"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/luxon": "^3.4.2",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"cross-env": "^7.0.3",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.4",
"typescript": "^5.5.4"
},
"scripts": {
"dev": "tsc && cross-env NODE_ENV=development node dist/main.js",
"start": "cross-env NODE_ENV=production node dist/main.js",
"build": "tsc",
"lint": "eslint . --ext .js,.ts",
"test": "jest"
},
"author": "ebiggz",
"license": "GPL-3.0",
"volta": {
"node": "20.16.0"
}
}