-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.06 KB
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
{
"type": "module",
"name": "jelly-bot",
"version": "1.0.0",
"description": "",
"main": "app.ts",
"scripts": {
"start": "node dist/app.js",
"dev": "nodemon --watch 'src/**/*.ts' --exec tsx src/app.ts",
"deploy": "tsx src/deploy-commands.ts",
"build": "esbuild src/app.ts --bundle --platform=node --format=esm --packages=external --outfile=dist/app.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"dayjs": "^1.11.20",
"discord.js": "^14.26.4",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"morgan": "^1.10.1",
"redis": "^6.0.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/express": "^5.0.6",
"@types/morgan": "^1.9.10",
"@types/node": "^26.0.0",
"@types/redis": "^4.0.10",
"cross-env": "^10.1.0",
"esbuild": "^0.28.1",
"eslint": "^10.5.0",
"eslint-config-prettier": "^10.1.8",
"nodemon": "^3.1.14",
"prettier": "^3.8.4",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.61.1"
}
}