-
-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.5 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.5 KB
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
{
"name": "bot",
"version": "1.0.0",
"private": true,
"engines": {
"node": ">=22.13.1"
},
"packageManager": "pnpm@9.15.5+sha1.cb1f6372ef64e2ba352f2f46325adead1c99ff8f",
"scripts": {
"build": "turbo build",
"clean": "git clean -xdf node_modules .turbo",
"clean:ws": "turbo clean",
"db:push": "pnpm -F db push",
"db:migrate": "pnpm -F db migrate",
"dev": "turbo run dev dev:codegen --continue",
"dev:docker:up": "docker compose -f docker-compose.dev.yml up -d",
"dev:docker:down": "docker compose -f docker-compose.dev.yml down",
"start": "turbo start --parallel",
"format": "turbo format --continue -- --cache --cache-location node_modules/.cache/.prettiercache",
"format:fix": "turbo format --continue -- --write --cache --cache-location node_modules/.cache/.prettiercache",
"lint": "turbo lint --continue -- --cache --cache-location node_modules/.cache/.eslintcache",
"lint:fix": "turbo lint --continue -- --fix --cache --cache-location node_modules/.cache/.eslintcache",
"lint:ws": "pnpm dlx sherif@latest",
"postinstall": "pnpm lint:ws",
"typecheck": "turbo typecheck",
"ui-add": "pnpm -F ui ui-add",
"codegen": "turbo codegen",
"dev:codegen": "turbo run dev:codegen",
"tolgee:push": "turbo tolgee:push",
"tolgee:pull": "turbo tolgee:pull"
},
"devDependencies": {
"@mc/prettier-config": "workspace:*",
"prettier": "^3.8.0",
"turbo": "^2.7.5",
"typescript": "^5.9.3"
},
"prettier": "@mc/prettier-config"
}