-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.46 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.46 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": "init",
"version": "1.1.0",
"private": true,
"workspaces": {
"packages": [
"apps/*",
"packages/*",
"tooling/*"
]
},
"scripts": {
"analyze": "bun --bun adamantite analyze",
"boundaries": "turbo boundaries",
"build": "turbo build",
"bump:deps": "bun update --interactive --recursive",
"check:monorepo": "adamantite monorepo",
"check": "adamantite check",
"clean": "turbo clean && git clean -xdf .cache .turbo dist node_modules",
"db:migrate": "turbo --filter @init/db migrate",
"db:push": "turbo --filter @init/db push",
"dev:apps": "turbo run dev --filter=!@init/*",
"dev:packages": "turbo run dev --filter=@init/*",
"dev": "turbo run dev",
"docker:down": "docker compose -f infra/local/docker-compose.yml down",
"docker:up": "docker compose -f infra/local/docker-compose.yml up -d",
"fix:monorepo": "adamantite monorepo --fix",
"fix": "adamantite fix",
"format": "adamantite format",
"generate": "bun --bun turbo generate",
"init:add:app": "init-now add app",
"init:add:package": "init-now add package",
"init:check": "init-now check",
"init:rename": "init-now rename",
"init:setup": "init-now setup",
"init:update": "init-now update",
"scripts": "bun run scripts/index.ts",
"start": "turbo run start",
"test:watch": "bun test --watch",
"test": "bun test",
"typecheck": "turbo run typecheck",
"codegen": "turbo run codegen --continue",
"typegen": "turbo run typegen --continue"
},
"devDependencies": {
"@effect/cli": "0.73.0",
"@effect/platform": "0.94.1",
"@effect/platform-bun": "0.87.0",
"@octokit/rest": "22.0.0",
"@turbo/gen": "2.6.3",
"@types/bun": "1.3.5",
"@types/yargs": "17.0.35",
"@typescript/native-preview": "7.0.0-dev.20251227.1",
"adamantite": "^0.28.0",
"effect": "3.19.14",
"init-now": "2.0.1",
"knip": "5.78.0",
"oxfmt": "0.26.0",
"oxlint": "1.41.0",
"oxlint-tsgolint": "0.11.1",
"sherif": "1.10.0",
"turbo": "2.6.3",
"typescript": "5.9.3",
"yargs": "18.0.0"
},
"overrides": {
"@types/react": "19.1.13",
"@types/react-dom": "19.1.9",
"better-auth": "1.4.10",
"react": "19.1.0",
"react-dom": "19.1.0",
"vite": "7.3.1"
},
"engines": {
"node": ">=24"
},
"packageManager": "bun@1.3.3",
"trustedDependencies": [
"@parcel/watcher",
"@sentry/cli",
"@tailwindcss/oxide",
"docs",
"extension"
]
}