-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.09 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
{
"name": "bread",
"version": "1.0.0",
"description": "The Bread Discord bot.",
"main": "index.js",
"type": "module",
"scripts": {
"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": {
"@types/express": "^4.17.17",
"@types/node": "^18.16.12",
"@types/random-seed": "^0.3.3",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"discord-api-types": "^0.37.42",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8",
"prisma": "^4.14.1",
"typescript": "^5.0.4"
},
"dependencies": {
"@prisma/client": "^4.14.1",
"discord.js": "^14.11.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"queue": "^7.0.0",
"random-seed": "^0.3.0",
"unique-names-generator": "^4.7.1"
},
"engines": {
"node": ">=18"
}
}