-
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 2.05 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
52
53
54
55
56
57
58
59
60
{
"name": "@db-studio/monorepo",
"workspaces": [
"packages/*",
"www"
],
"scripts": {
"dev": "turbo run dev",
"dev:web": "turbo run dev --filter=@db-studio/web",
"dev:server": "turbo run dev --filter=db-studio",
"dev:proxy": "turbo run dev --filter=@db-studio/proxy",
"dev:www": "turbo run dev --filter=@db-studio/www",
"start": "turbo run start",
"init-db:pgsql": "bash ./scripts/init-db-pgsql.sh",
"init-db:mysql": "bash ./scripts/init-db-mysql.sh",
"init-db:mssql": "bash ./scripts/init-db-mssql.sh",
"init-db:mongo": "bash ./scripts/init-db-mongo.sh",
"init-db:sqlite": "bash ./scripts/init-db-sqlite.sh",
"init-db:redis": "bash ./scripts/init-db-redis.sh",
"build": "turbo run build",
"build:web": "turbo run build --filter=@db-studio/web",
"scan:web": "bunx react-scan@latest https://web.db-studio.localhost",
"build:server": "turbo run build --filter=db-studio",
"build:proxy": "turbo run build --filter=@db-studio/proxy",
"build:www": "turbo run build --filter=@db-studio/www",
"deploy:www": "turbo run deploy --filter=@db-studio/www",
"deploy:www:preview": "turbo run deploy:preview --filter=@db-studio/www",
"deploy:proxy": "turbo run deploy --filter=@db-studio/proxy",
"format": "turbo run format",
"check:meta": "bun run --cwd www check-meta",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"test:server": "turbo run test --filter=db-studio",
"changeset": "changeset",
"version": "changeset version",
"prepare": "husky",
"clean": "rm -rf node_modules packages/*/node_modules packages/*/dist www/node_modules www/dist bun.lockb .turbo",
"knip": "knip"
},
"dependencies": {
"@biomejs/biome": "^2.4.15",
"turbo": "^2.9.14"
},
"devDependencies": {
"husky": "^9.1.7",
"knip": "^6.14.1",
"portless": "^0.15.1"
},
"peerDependencies": {
"typescript": "^6.0.3"
},
"overrides": {
"esbuild": "0.27.2"
},
"engines": {
"node": ">=20.x",
"bun": ">=1.2.19"
},
"packageManager": "bun@1.2.19"
}