forked from dynamicbark/bread
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.15 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.15 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
42
43
44
45
46
{
"name": "bread",
"version": "1.0.0",
"description": "The Bread Discord bot.",
"main": "index.js",
"type": "module",
"scripts": {
"prisma-generate": "prisma generate",
"build": "tsc --project tsconfig.json",
"lint": "eslint \"**/*.ts\" --max-warnings=0",
"fix": "eslint \"**/*.ts\" --fix --max-warnings=0"
},
"author": "Skyz",
"license": "ISC",
"private": true,
"bin": {
"bread": "dist/index.js"
},
"devDependencies": {
"@eslint/js": "^9.20.0",
"@types/express": "^5.0.0",
"@types/node": "^22.13.1",
"@types/random-seed": "^0.3.5",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"eslint": "^9.20.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"prettier": "^3.5.0",
"prisma": "^6.3.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.0"
},
"dependencies": {
"@prisma/client": "^6.3.1",
"discord-api-types": "^0.37.119",
"discord.js": "^14.18.0",
"dotenv": "^16.4.7",
"express": "^5.0.1",
"queue": "^7.0.0",
"random-seed": "^0.3.0",
"unique-names-generator": "^4.7.1"
},
"engines": {
"node": ">=18"
}
}