-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.34 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.34 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
{
"name": "ship-fullstack",
"private": true,
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"check": "biome check --write .",
"ruler:apply": "pnpm dlx @intellectronica/ruler@latest apply --local-only",
"dev": "turbo dev",
"build": "turbo build",
"check-types": "turbo check-types",
"dev:native": "turbo -F native dev",
"dev:web": "turbo -F web dev",
"dev:server": "turbo -F server dev",
"db:push": "turbo -F server db:push",
"db:studio": "turbo -F server db:studio",
"db:generate": "turbo -F server db:generate",
"db:migrate": "turbo -F server db:migrate",
"deploy:web": "turbo -F web deploy",
"deploy:server": "turbo -F server deploy",
"deploy": "turbo -F web -F server deploy",
"husky:install": "husky install",
"commit": "git add . && npx cz && git push"
},
"devDependencies": {
"@biomejs/biome": "2.2.4",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"turbo": "^2.5.4",
"ultracite": "5.4.5"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,jsonc,css,scss,md,mdx}": [
"pnpm dlx ultracite fix"
]
},
"packageManager": "pnpm@10.17.1",
"config": {
"commitizen": {
"path": "cz-conventional-changelog",
"maxHeaderWidth": 0,
"maxLineWidth": 0
}
}
}