-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.25 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.25 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
{
"name": "louez",
"version": "1.0.0",
"description": "Open-source equipment rental management platform with multi-tenant storefronts",
"author": "Synapsr <contact@synapsr.com>",
"license": "Apache-2.0 WITH Commons-Clause",
"homepage": "https://github.com/synapsr/louez#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/synapsr/louez.git"
},
"bugs": {
"url": "https://github.com/synapsr/louez/issues"
},
"keywords": [
"rental",
"equipment-rental",
"saas",
"multi-tenant",
"nextjs",
"react",
"typescript",
"tailwindcss",
"drizzle",
"mysql",
"storefront",
"inventory-management",
"reservation-system",
"self-hosted"
],
"engines": {
"node": ">=20.0.0"
},
"workspaces": [
"apps/*",
"packages/*"
],
"packageManager": "pnpm@10.27.0",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"dev:web": "turbo dev --filter=@louez/web",
"lint": "turbo run lint && pnpm audit:duplicates",
"audit:duplicates": "node scripts/audit-duplicates.mjs",
"type-check": "turbo run type-check",
"type-check:web": "turbo type-check --filter=@louez/web",
"format": "prettier --write \"**/*.{ts,tsx,md,json}\"",
"clean": "turbo run clean && rm -rf node_modules",
"db:generate": "turbo run db:generate --filter=@louez/db",
"db:migrate": "turbo run db:migrate --filter=@louez/db",
"db:migrate:run": "turbo run db:migrate:run --filter=@louez/db",
"db:push": "turbo run db:push --filter=@louez/db",
"db:studio": "turbo run db:studio --filter=@louez/db",
"db:seed": "turbo run db:seed --filter=web",
"pricing:fix-pricing-mode": "pnpm --filter=@louez/db run pricing:fix-pricing-mode",
"pricing:preflight": "pnpm --filter=@louez/db run pricing:preflight",
"pricing:backfill": "pnpm --filter=@louez/db run pricing:backfill",
"pricing:parity-report": "pnpm --filter=@louez/db run pricing:parity-report",
"pricing:parity-top-products": "pnpm --filter=@louez/db run pricing:parity-top-products"
},
"devDependencies": {
"@louez/config": "workspace:*",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"prettier": "^3.7.4",
"prettier-plugin-tailwindcss": "^0.7.2",
"turbo": "^2.8.17"
}
}