-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.39 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.39 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
{
"name": "human-corners",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "bun x @biomejs/biome format --write ./",
"auth:generate": "bun x @better-auth/cli generate --config ./apps/auth/src/cli.ts --output ./apps/auth/src/schema.sql -y",
"auth:migrate": "bun x @better-auth/cli migrate --config ./apps/auth/src/cli.ts",
"auth:generate:prod": "PRODUCTION=true bun x @better-auth/cli generate --config ./apps/auth/src/cli.ts --output ./apps/auth/src/schema.sql -y",
"auth:migrate:prod": "PRODUCTION=true bun x @better-auth/cli migrate --config ./apps/auth/src/cli.ts",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"husky": "^9.1.7",
"lint-staged": "^15.4.1",
"turbo": "^2.3.4",
"typescript": "5.5.4"
},
"engines": {
"node": ">=20"
},
"packageManager": "bun@1.1.45",
"workspaces": ["apps/*", "packages/*"],
"dependencies": {
"@better-auth/expo": "^1.1.15",
"@hookform/resolvers": "^3.10.0",
"@types/pg": "^8.11.11",
"better-auth": "^1.1.15",
"better-auth-harmony": "^1.1.3",
"date-fns": "^4.1.0",
"expo-secure-store": "^14.0.1",
"pg": "^8.13.1",
"react-native-markdown-display": "^7.0.2",
"react-native-svg": "^15.11.1",
"zod": "^3.24.1"
},
"trustedDependencies": ["@biomejs/biome", "core-js-pure"],
"lint-staged": {
"**/*.{js,jsx,ts,tsx,json,md}": ["bun format"]
}
}