Files
Master-Bot/package.json
2023-10-27 10:31:20 +02:00

33 lines
966 B
JSON

{
"name": "master-bot-turbo",
"private": true,
"engines": {
"node": ">=v18.16.1"
},
"packageManager": "pnpm@8.6.7",
"scripts": {
"build": "turbo build",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo clean",
"db:generate": "turbo db:generate",
"db:push": "turbo db:push db:generate",
"db:studio": "pnpm -F db dev",
"dev": "turbo dev",
"dev-parallel": "turbo dev --parallel",
"format": "prettier --write \"**/*.{js,cjs,mjs,ts,tsx,md,json}\" --ignore-path .gitignore",
"lint": "turbo lint && manypkg check",
"lint:fix": "turbo lint:fix && manypkg fix",
"type-check": "turbo type-check",
"postinstall": "pnpm db:push",
"docker-compose": "docker compose --env-file docker.env up -d --build"
},
"dependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.1.0",
"@manypkg/cli": "^0.21.0",
"prettier": "^3.0.1",
"prettier-plugin-tailwindcss": "^0.4.1",
"turbo": "^1.10.12",
"typescript": "^5.1.6"
}
}