-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 1.11 KB
/
package.json
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
{
"name": "linx",
"workspaces": ["shared/", "server/", "client/"],
"scripts": {
"client:start": "cd client && vite preview",
"server:start": "cd server && node dist/src/index.js",
"build": "npm run build --ws",
"client:build": "npm run build -w @linx/client",
"shared:build": "npm run build -w @linx/shared",
"server:build": "npm run build -w @linx/server",
"client:dev": "npm run dev -w @linx/client",
"server:dev": "npm run dev -w @linx/server",
"lint": "npm run lint --ws",
"format": "npm run format --ws",
"format:unsafe": "npm run format:unsafe --ws",
"client:lint": "npm run lint -w @linx/client",
"client:format": "npm run format -w @linx/client",
"client:format:unsafe": "npm run format:unsafe -w @linx/client",
"server:lint": "npm run lint -w @linx/server",
"server:format": "npm run format -w @linx/server",
"server:format:unsafe": "npm run format:unsafe -w @linx/server",
"server:migrations:up": "npm run migrations:up -w @linx/server"
},
"devDependencies": {
"@biomejs/biome": "1.8.3"
},
"dependencies": {
"zod": "^3.23.8"
}
}