-
Notifications
You must be signed in to change notification settings - Fork 372
/
package.json
32 lines (32 loc) · 965 Bytes
/
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
{
"name": "master-bot-turbo",
"private": true,
"engines": {
"node": ">=v20.0.0"
},
"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.1",
"@manypkg/cli": "^0.21.0",
"prettier": "^3.1.0",
"prettier-plugin-tailwindcss": "^0.5.7",
"turbo": "^1.10.16",
"typescript": "^5.3.2"
}
}