This repository has been archived by the owner on Jan 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
48 lines (48 loc) · 1.47 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": "@denkylabs/denky",
"private": true,
"version": "0.0.0",
"description": "Denky is a multipurpose Discord bot used in +3000 servers. Built with Node.js, TypeScript and discord.js.",
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "https://github.com/denkylabs/denkybot.git"
},
"bugs": {
"url": "https://github.com/denkylabs/denkybot/issues"
},
"homepage": "https://github.com/denkylabs/denkybot#readme",
"author": "Davi Patricio <[email protected]>",
"license": "GPL-3.0",
"engines": {
"node": ">=16.9.0"
},
"scripts": {
"build": "yarn workspace @denkylabs/denkybot run build && yarn workspaces foreach -pt run postbuild",
"typecheck": "yarn workspace @denkylabs/denkybot run types:check",
"format": "yarn workspaces foreach -pt run lint:fix",
"prisma": "yarn workspace @denkylabs/prisma run generate:postgres",
"lint": "eslint packages"
},
"devDependencies": {
"@types/node": "18.0.6",
"@typescript-eslint/eslint-plugin": "5.36.1",
"@typescript-eslint/parser": "5.36.1",
"eslint": "8.23.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.2.1",
"prettier": "2.7.1",
"prisma": "4.3.1",
"typescript": "4.8.2"
},
"dependencies": {
"@prisma/client": "4.3.1",
"discord.js": "14.3.0",
"tslib": "2.4.0"
},
"packageManager": "[email protected]"
}