-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 2.02 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
43
44
45
46
47
48
{
"name": "yet-another-better-oh-bot",
"version": "4.4.1",
"description": "Yet another better discord bot for managing office hours",
"type": "module",
"scripts": {
"lint": "eslint src/",
"build": "npx tsc",
"format": "npx prettier -w .",
"start": "node dist/src/app.js",
"dev": "echo 'Compiling...' && npx tsc && echo 'Successfully Compiled.' && NODE_ENV=development node dist/src/app.js",
"dev_precompiled": "NODE_ENV=development node dist/src/app.js",
"devWithProfile": "echo 'Compiling...' && npx tsc && echo 'Successfully Compiled.' && NODE_ENV=development node --inspect dist/src/app.js",
"prod": "echo 'Compiling...' && npx tsc && echo 'Successfully Compiled.' && NODE_ENV=production pm2 start dist/src/app.js --name YABOB_PROD",
"prod_precompiled": "NODE_ENV=production pm2 start dist/src/app.js --name YABOB_PROD",
"makeDoc": "npx typedoc --plugin typedoc-plugin-merge-modules ./src --entryPointStrategy expand --mergeModulesMergeMode module --excludeInternal --name \"Yet Another Better Office-hour Bot\" --includeVersion"
},
"devDependencies": {
"@types/lz-string": "^1.3.34",
"@types/node-fetch": "^2.6.1",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"eslint": "^8.53.0",
"pino-pretty": "^10.2.0",
"prettier": "^3.1.0",
"typedoc": "^0.25.3",
"typedoc-plugin-merge-modules": "^5.1.0",
"typescript": "^5.2.2"
},
"dependencies": {
"ascii-table3": "^0.9.0",
"axios": "^1.6.1",
"csv-string": "^4.1.1",
"discord-api-types": "^0.37.11",
"discord.js": "^14.8.0",
"firebase-admin": "^12.2.0",
"google-spreadsheet": "^4.1.1",
"googleapis": "^128.0.0",
"json-2-csv": "^5.0.1",
"lru-cache": "^10.0.2",
"lz-string": "^1.4.4",
"pino": "^8.15.1",
"zod": "^3.19.1"
},
"engines": {
"node": ">=18.12.0"
}
}