-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.36 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.36 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
{
"name": "tentix-monorepo",
"version": "0.0.1",
"private": true,
"scripts": {
"build": "turbo typecheck build",
"dev": "turbo dev",
"lint": "turbo lint",
"typecheck": "turbo typecheck",
"start": "bun server/dist/server.js",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"clean": "rm -rf ./**/node_modules && rm -rf ./**/dist",
"docker-debug": "docker build --no-cache --progress=plain . &> build.log"
},
"workspaces": {
"packages": [
"packages/*",
"frontend",
"server"
],
"catalog": {
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.56.1",
"@types/react": "^19",
"@types/react-dom": "^19",
"typescript": "^5.8.3",
"@types/node": "^22",
"@types/bun": "^1.2.16",
"tailwindcss": "^4.0.8"
}
},
"devDependencies": {
"@types/bun": "catalog:",
"@types/node": "catalog:",
"@workspace/eslint-config": "workspace:*",
"@workspace/typescript-config": "workspace:*",
"eslint": "^9.27.0",
"i18n": "workspace:*",
"prettier": "^3.5.1",
"tentix-server": "workspace:*",
"tentix-ui": "workspace:*",
"turbo": "^2.5.3",
"typescript": "catalog:",
"typescript-eslint": "^8.32.1"
},
"packageManager": "bun@1.2.16",
"engines": {
"node": ">=22"
},
"dependencies": {
"zod": "^3.25.56"
}
}