-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.87 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
{
"name": "monorepo-template",
"version": "0.0.1",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"turbo:up": "pnpm up --latest -r",
"turbo:syncpack:list": "pnpm exec syncpack lint --dependency-types prod,dev,peer",
"turbo:syncpack:fix": "pnpm exec syncpack fix --dependency-types prod,dev,peer",
"turbo:email:dev": "cd packages/email && pnpm email:dev",
"typecheck": "tsc --noEmit",
"audit": "pnpm audit --audit-level moderate",
"audit:fix": "pnpm audit --fix",
"db:generate": "cd packages/drizzle && npx drizzle-kit generate",
"db:migrate": "cd packages/drizzle && npx drizzle-kit migrate",
"db:push": "cd packages/drizzle && npx drizzle-kit push",
"db:studio": "cd packages/drizzle && npx drizzle-kit studio",
"reset": "pnpm -r exec rm -rf node_modules .next .turbo && rm -rf node_modules .next .turbo",
"run-api": "cd apps/dashboard && pnpm dev",
"ios": "cd apps/mobile && pnpm ios",
"android": "expo run:android",
"sync:plans": "tsx packages/auth/scripts/sync-plans.ts",
"webhooks:check": "tsx packages/auth/scripts/check-webhooks.ts"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
"@types/node": "^25.3.5",
"@workspace/eslint-config": "workspace:*",
"@workspace/typescript-config": "workspace:*",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"dotenv": "^16.5.0",
"tsx": "^4.19.0",
"turbo": "^2.8.13",
"typescript": "^5.9.3"
},
"packageManager": "pnpm@10.4.1",
"engines": {
"node": ">=20"
},
"pnpm": {
"overrides": {
"@types/minimatch": "npm:@types/minimatch@5.1.2"
}
},
"dependencies": {
"eslint": "^10.0.2",
"react": "^19.2.4",
"react-native": "0.84.1",
"zod": "^4.3.6"
}
}