-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.36 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
49
50
51
52
53
{
"name": "sharedway",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "bun env turbo build",
"dev": "bun env turbo dev",
"test": "bun env turbo test",
"test:type": "bun env turbo test:type",
"lint": "turbo lint --",
"verify": "turbo verify --",
"format": "turbo format --",
"type-check": "turbo type-check",
"sync": "syncpack fix-mismatches --indent \"\t\"",
"clean": "turbo clean",
"component": "cd packages/ds && npx shadcn-ui@latest add",
"db": "cd packages/services && bun run",
"symlink": "symlink-dir ./public ./apps/app/public",
"outdated": "taze -I -r",
"env": "dotenvx run -f .env.local -f .env --log-level=error --",
"postinstall": "bun run symlink && bun run db generate"
},
"prisma": {
"schema": "packages/database/prisma/schema.prisma",
"seed": "bun packages/database/src/seed.ts"
},
"devDependencies": {
"@biomejs/biome": "1.9.2",
"@repo/config": "0.0.0",
"turbo": "2.1.2"
},
"engines": {
"bun": ">=1.1.29"
},
"packageManager": "[email protected]",
"workspaces": ["apps/*", "packages/*", "scripts/*"],
"dependencies": {
"@dotenvx/dotenvx": "^1.14.1",
"symlink-dir": "^6.0.2",
"syncpack": "^13.0.0",
"taze": "^0.16.9"
},
"trustedDependencies": [
"@biomejs/biome",
"@clerk/shared",
"@prisma/client",
"@prisma/engines",
"@vercel/speed-insights",
"core-js-pure",
"esbuild",
"prisma"
]
}