-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.95 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.95 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "rectangular-labs",
"private": true,
"workspaces": [
"apps/*",
"packages/*",
"tooling/*"
],
"scripts": {
"dev": "docker compose up -d && pnpm turbo watch dev --continue",
"dev:seo": "docker compose up -d && pnpm turbo watch dev --continue --filter=seo... --filter=!seo-www",
"dev:seo-www": "pnpm turbo watch dev --continue --filter=seo-www",
"build": "turbo build",
"build:preview": "turbo build:preview",
"build:production": "turbo build:production",
"changeset": "changeset",
"changeset:release": "bun run build && changeset publish",
"clean": "git clean -xdf node_modules .turbo .sst",
"clean:workspaces": "turbo clean",
"db:mg": "cd ./packages/db && pnpm run migrate-generate && cd ../..",
"db:mp:local": "cd ./packages/db && pnpm run migrate-push:local && cd ../..",
"db:mp:preview": "cd ./packages/db && pnpm run migrate-push:preview && cd ../..",
"db:mp:production": "cd ./packages/db && pnpm run migrate-push:production && cd ../..",
"db:push": "cd ./packages/db && pnpm run push --force && cd ../..",
"db:studio": "turbo run --filter @rectangular-labs/db studio",
"emails:create": "bun run --filter @rectangular-labs/emails create",
"emails:preview": "turbo run --filter @rectangular-labs/emails preview",
"emails:check": "turbo run --filter @rectangular-labs/emails check",
"task:deploy": "cd ./packages/task && pnpm run deploy && cd ../..",
"env:get": "bun x dotenvx get",
"env:set": "bun x dotenvx set",
"env:encrypt": "bun x dotenvx encrypt",
"test": "pnpm dotenvx run -f .env.local -f .env -- vitest",
"ui:add": "cd ./packages/ui && bun run ui-add && cd ../..",
"new:package": "turbo gen package",
"copy:package": "turbo gen workspace --copy",
"format": "turbo run format --continue",
"lint": "turbo run lint --continue",
"typecheck": "turbo run typecheck --continue",
"knip": "pnpm dotenvx run -- knip",
"postinstall": "pnpx sherif@latest",
"sso": "aws sso login --sso-session=rectangular-labs"
},
"devDependencies": {
"@biomejs/biome": "2.4.10",
"@changesets/cli": "^2.29.7",
"@dotenvx/dotenvx": "^1.51.1",
"@rectangular-labs/typescript": "workspace:*",
"@turbo/gen": "^2.6.1",
"knip": "^5.70.1",
"miniflare": "4.20251118.1",
"tsx": "^4.20.6",
"turbo": "^2.6.1",
"typescript": "^5.9.3",
"vitest": "^4.0.13"
},
"pnpm": {
"overrides": {
"react-is": "^19.2.0",
"vite": "7.2.4"
},
"ignoredBuiltDependencies": [
"@prisma/client",
"@prisma/engines",
"better-sqlite3",
"oxc-resolver",
"prisma",
"protobufjs"
],
"onlyBuiltDependencies": [
"@biomejs/biome",
"@parcel/watcher",
"@tailwindcss/oxide",
"aws-sdk",
"core-js-pure",
"esbuild",
"sharp",
"workerd"
],
"patchedDependencies": {
"@ark/util": "patches/@ark__util.patch"
}
},
"packageManager": "pnpm@10.32.1"
}