-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.79 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
{
"name": "huella-latam",
"version": "0.0.0",
"description": "Huella Latam monorepo",
"private": true,
"packageManager": "pnpm@11.10.0",
"license": "AGPL-3.0-only",
"engines": {
"node": ">=26.0.0"
},
"scripts": {
"dev": "turbo run dev",
"dev:api": "turbo run dev --filter=api",
"dev:web": "turbo run dev --filter=web",
"build": "turbo run build",
"start": "turbo run start",
"start:api": "turbo run start --filter=api",
"start:web": "turbo run start --filter=web",
"test": "turbo run test",
"test:api": "turbo run test --filter=api",
"test:seed": "turbo run test --filter=@repo/seed",
"test:api:leg": "turbo run test:leg --filter=api",
"test:api:coverage:merge": "turbo run test:coverage:merge --filter=api",
"test:api:verify-storage-manifest": "turbo run test:verify-storage-manifest --filter=api",
"test:web": "turbo run test --filter=web",
"lint": "turbo run lint -- --max-warnings=0",
"type-check": "turbo run type-check",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md,yaml}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md,yaml}\"",
"clean": "turbo run clean",
"db:restore": "turbo run db:restore --filter=@repo/database && turbo run seed --filter=@repo/seed",
"db:provision": "pnpm --filter=@repo/database prod:deploy && pnpm db:seed",
"db:seed": "turbo run seed --filter=@repo/seed",
"db:promote-superadmin": "pnpm --filter=@repo/database promote-superadmin",
"db:drop:worktree": "pnpm --filter=@repo/database db:drop:worktree"
},
"devDependencies": {
"cpy-cli": "^7.0.0",
"pdf-lib": "^1.17.1",
"playwright-core": "^1.62.1",
"prettier": "^3.9.6",
"prettier-plugin-tailwindcss": "^0.8.1",
"rimraf": "catalog:shared",
"turbo": "^2.10.8"
}
}