This repository has been archived by the owner on Nov 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.56 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": "riskybot",
"description": "A random discord bot with many fun features",
"version": "4.0.3",
"private": true,
"author": "RiskyMH",
"engines": {
"node": ">=18.0.0"
},
"homepage": "https://bot.riskymh.dev",
"repository": {
"type": "git",
"url": "https://github.com/RiskyMH/RiskyBOT.git"
},
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"lint": "turbo run lint --parallel",
"update": "yarn upgrade-interactive",
"deploy-commands": "yarn deploy-commands:riskybot && yarn deploy-commands:imgen",
"deploy-commands:riskybot": "node -r dotenv/config apps/riskybot/dist/deploy-commands.mjs",
"deploy-commands:imgen": "node -r dotenv/config apps/imgen/dist/deploy-commands.mjs",
"start:riskybot": "node -r dotenv/config --enable-source-maps apps/riskybot/dist/express.mjs",
"start:imgen": "node -r dotenv/config --enable-source-maps apps/imgen/dist/express.mjs",
"dev:website": "yarn workspace @riskybot/website dev",
"dev:bot": "yarn vercel dev"
},
"devDependencies": {
"@types/node": "^20.11.17",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vercel/node": "^3.0.17",
"dotenv": "^16.4.1",
"eslint": "^8.56.0",
"eslint-plugin-unicorn": "^51.0.1",
"turbo": "^1.12.3",
"typescript": "^5.3.3"
},
"packageManager": "[email protected]",
"workspaces": [
"packages/*",
"apps/*"
]
}