-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.5 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
49
50
51
52
53
54
55
{
"name": "slabbot",
"version": "0.5.0-next",
"description": "another discord bot with features nobody asked for",
"private": "true",
"type": "module",
"scripts": {
"lint": "eslint src",
"setup": "node src/setup.js",
"build": "tsc",
"clean": "rimraf dist tsconfig.tsbuildinfo",
"start": "node dist/index.js",
"dev": "NODE_ENV=dev nodemon dist/index.js",
"mongo": "mongod --dbpath ./db",
"deploy": "node dist/manual/deploy-commands.js",
"speak": "node dist/manual/speak.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/12beesinatrenchcoat/slabbot.git"
},
"author": "Andy Chan (12beesinatrenchcoat) <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=18",
"pnpm": ">=8"
},
"dependencies": {
"@discordjs/rest": "^2.2.0",
"@inquirer/prompts": "^3.3.0",
"colord": "^2.9.3",
"dayjs": "^1.11.10",
"discord-api-types": "^0.37.66",
"discord.js": "^14.14.1",
"dotenv": "^16.3.1",
"mongoose": "^8.0.3",
"node-cache": "^5.1.2",
"node-fetch": "^3.3.2",
"pino": "^8.16.2",
"reflect-metadata": "^0.1.14",
"tsyringe": "^4.8.0"
},
"devDependencies": {
"@types/node": "^20.10.4",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"eslint": "^8.55.0",
"eslint-config-xo": "^0.43.1",
"nodemon": "^3.0.2",
"pino-pretty": "^10.2.3",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}