-
-
Notifications
You must be signed in to change notification settings - Fork 130
/
package.json
67 lines (67 loc) · 1.95 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
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@majoexe/monorepo",
"version": "0.0.0",
"private": true,
"type": "module",
"description": "Monorepo for majo.exe",
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"build:force": "turbo run build:force",
"deploy": "turbo run deploy",
"analyze": "turbo run analyze",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"docker:all": "docker compose -f docker-compose.yaml up -d",
"docker:build": "turbo run docker:build",
"docker:build:bot": "docker build -t majoexe/bot:latest -f ./apps/bot/Dockerfile .",
"docker:run:bot": "docker run -it --init --rm --env-file .env majoexe/bot:latest",
"format": "turbo run format",
"format:check": "turbo run format:check",
"prisma:generate": "turbo run prisma:generate ",
"prisma:migrate": "turbo run prisma:migrate ",
"prisma:format": "turbo run prisma:format ",
"prisma:seed": "turbo run prisma:seed --no-cache",
"prisma:studio": "turbo run prisma:studio",
"prisma:push": "turbo run prisma:push"
},
"prisma": {
"schema": "packages/database/prisma/schema.prisma",
"seed": "node packages/database/src/seed.js"
},
"dependencies": {
"tsx": "4.19.2",
"dotenv-cli": "7.4.2",
"turbo": "2.2.3"
},
"devDependencies": {
"@igorkowalczyk/eslint-config": "3.0.0-beta.15",
"@igorkowalczyk/prettier-config": "3.0.0-beta.15",
"@types/node": "22.9.0",
"eslint": "9.14.0",
"eslint-plugin-turbo": "2.2.3",
"prettier": "3.3.3",
"typescript": "5.6.3"
},
"engines": {
"node": ">=20.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IgorKowalczyk/majo.exe.git"
},
"author": "Igor Kowalczyk",
"license": "MIT",
"bugs": {
"url": "https://github.com/IgorKowalczyk/majo.exe/issues"
},
"homepage": "https://majoexe.xyz",
"keywords": [
"node",
"discord",
"majoexe",
"bot",
"discord-bot"
],
"packageManager": "[email protected]"
}