-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.89 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.89 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
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "tsu-stack",
"private": true,
"type": "module",
"scripts": {
"check": "vp check",
"fix": "vp check --fix",
"test": "vp run -r test",
"dev": "pnpm -r --parallel dev",
"build": "vp run -r build",
"prepare": "vp config",
"deps": "vpx taze@latest -Ilwr",
"deps:major": "vpx taze@latest major -Ilwr",
"knip": "pnpm dotenvx run -f ./packages/env/.env -- vpx knip@latest",
"knip:fix": "pnpm dotenvx run -f ./packages/env/.env -- vpx knip@latest --fix",
"tanstack": "vpx @tanstack/cli@latest",
"db": "vp run --filter @tsu-stack/db db",
"db:dev:start": "vp run --filter @tsu-stack/db db:dev:start",
"db:dev:stop": "vp run --filter @tsu-stack/db db:dev:stop",
"db:push": "vp run -w db push",
"db:generate": "vp run -w db generate",
"db:migrate": "vp run -w db migrate",
"db:studio": "vp run -w db studio",
"docker:up": "pnpm dotenvx run -f .env.docker docker -- compose up",
"docker:up:build": "pnpm dotenvx run -f .env.docker docker -- compose up --build",
"docker:down": "pnpm dotenvx run -f .env.docker docker -- compose down",
"ui": "vp run --filter @tsu-stack/ui ui",
"ui:web": "vp run --filter @tsu-stack/web ui",
"auth:secret": "vpx auth@latest secret",
"auth:generate": "vp run --filter @tsu-stack/db auth:generate"
},
"devDependencies": {
"@commitlint/cli": "catalog:",
"@commitlint/config-conventional": "catalog:",
"@dotenvx/dotenvx": "catalog:",
"@tanstack/eslint-plugin-query": "catalog:",
"@tanstack/eslint-plugin-router": "catalog:",
"@typescript/native-preview": "catalog:",
"eslint-plugin-fsd-lint": "catalog:",
"eslint-plugin-react-hooks": "catalog:",
"oxlint-tsgolint": "catalog:",
"vite-plus": "catalog:",
"vitest": "catalog:"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"packageManager": "pnpm@10.33.0"
}