-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.37 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.37 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
{
"name": "finopenpos",
"private": true,
"workspaces": {
"packages": [
"apps/*",
"packages/*"
],
"catalog": {
"dotenv": "^17.2.2",
"zod": "^4.3.6",
"lucide-react": "^0.575.0",
"next": "^16.1.6",
"next-themes": "^0.4.6",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"sonner": "^2.0.7",
"@trpc/server": "^11.10.0",
"@trpc/client": "^11.10.0",
"better-auth": "^1.4.20",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"tailwindcss": "^4.2.1"
}
},
"type": "module",
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"check-types": "turbo check-types",
"dev:web": "turbo -F web dev",
"dev:docs": "turbo -F docs dev",
"dev:www": "turbo -F @finopenpos/www dev",
"db:push": "turbo -F @finopenpos/db db:push",
"db:studio": "turbo -F @finopenpos/db db:studio",
"db:generate": "turbo -F @finopenpos/db db:generate",
"db:migrate": "turbo -F @finopenpos/db db:migrate",
"check": "biome check --write ."
},
"dependencies": {
"@finopenpos/env": "workspace:*",
"dotenv": "catalog:",
"zod": "catalog:"
},
"devDependencies": {
"@biomejs/biome": "^2.2.0",
"@finopenpos/config": "workspace:*",
"@types/node": "^22.13.14",
"turbo": "^2.8.12",
"typescript": "^5"
},
"packageManager": "bun@1.3.5"
}