-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.12 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
{
"name": "whitecup",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"dev:server": "turbo dev --filter=server",
"dev:web": "turbo dev --filter=web",
"docker": "bun scripts/docker.ts",
"docker:server": "docker build -t elysia-mono-server -f ./apps/server/Dockerfile .",
"docker:web": "docker build -t elysia-mono-web -f ./apps/web/Dockerfile .",
"test": "turbo test",
"test:unit": "turbo test:unit",
"test:watch": "turbo test:watch",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"format:check": "prettier --check .",
"shadcn-ui": "cd packages/ui && bunx shadcn-ui",
"postshadcn-ui": "bun packages/ui/scripts/shadcn-ui.ts",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"husky": "^9.1.5",
"prettier": "^3.2.5",
"turbo": "^2.0.11",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=22"
},
"packageManager": "bun@1.1.21",
"workspaces": [
"apps/*",
"packages/*"
],
"volta": {
"node": "22.7.0"
}
}