-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.84 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
{
"name": "bashbuddy",
"private": true,
"version": "1.0.0",
"engines": {
"node": ">=20.12.0"
},
"packageManager": "[email protected]",
"scripts": {
"build": "turbo build",
"build:docker": "docker compose -f docker-compose.build.yaml build --parallel",
"build:env": "infisical run -env dev -- turbo build",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo clean",
"db:push": "pnpm -F db push",
"db:studio": "pnpm -F db studio",
"db:up": "pnpm -F db db:up",
"db:generate": "pnpm -F db db:generate",
"dev": "PUBLIC_ENVIRONMENT=development infisical run --env dev -- turbo watch dev --continue --concurrency 30",
"dev:dotenv": "PUBLIC_ENVIRONMENT=development dotenv -e ./.env -- turbo watch dev --continue --concurrency 30",
"format": "turbo format --continue -- --cache --cache-location .cache/.prettiercache",
"format:fix": "turbo format --continue -- --write --cache --cache-location .cache/.prettiercache",
"lint": "turbo lint --continue -- --cache --cache-location .cache/.eslintcache",
"lint:fix": "turbo lint --continue -- --fix --cache --cache-location .cache/.eslintcache",
"lint:ws": "pnpm dlx [email protected]",
"precommit": "pnpm typecheck && pnpm lint:fix && pnpm list && pnpm format:fix && pnpm format && pnpm build",
"pc": "pnpm run precommit",
"postinstall": "pnpm lint:ws",
"typecheck": "turbo typecheck",
"ui-add": "pnpm -F ui ui-add",
"test": "vitest",
"test:watch": "vitest --watch"
},
"dependencies": {
"bun": "1.2.4",
"vitest": "catalog:",
"@infisical/cli": "0.34.2"
},
"devDependencies": {
"@bashbuddy/prettier-config": "workspace:*",
"@turbo/gen": "^2.3.1",
"prettier": "catalog:",
"turbo": "^2.3.1",
"typescript": "catalog:",
"@changesets/cli": "2.28.1"
},
"prettier": "@bashbuddy/prettier-config"
}