forked from CSS360-2026-Winter/TREMM
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.12 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.12 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
{
"name": "memebot_discord",
"version": "1.0.0",
"description": "this is a demo project for teaching how to build a discord bot",
"scripts": {
"build": "rm -rf build && esbuild src/*.js src/**/*.js --platform=node --format=cjs --outdir=build --outbase=src",
"register": "npm run build && node -r dotenv/config build/deploy-commands.js",
"start": "npm run build && node -r dotenv/config build/app.js",
"dev": "nodemon",
"prod": "node build/app.js",
"test": "mocha -r esbuild-runner/register ./tests/*.spec.js --exit"
},
"keywords": [
"discord",
"bot",
"javascript",
"nodejs"
],
"author": "Shubham Jaiswal <@shubhamjaiswal27>",
"license": "MIT",
"dependencies": {
"20": "^3.1.9",
"amadeus": "^11.0.0",
"ascii-table": "^0.0.9",
"axios": "^0.27.2",
"discord.js": "^14.25.1",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"chai": "^4.3.6",
"dotenv": "^16.6.1",
"esbuild": "^0.15.9",
"esbuild-runner": "^2.2.1",
"eslint": "^10.0.0",
"globals": "^17.3.0",
"mocha": "^10.0.0",
"nodemon": "^2.0.20"
}
}