-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.38 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
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "avelin",
"version": "0.8.1",
"private": true,
"scripts": {
"dev": "turbo run dev dev:tsc --concurrency=15",
"dev:zero": "turbo run dev:zero",
"dev:up": "turbo run dev dev:tsc dev:zero db:studio --concurrency=15",
"check": "biome check .",
"check:fix": "biome check . --write",
"build": "turbo run build",
"compile": "turbo run compile",
"db:studio": "turbo run db:studio",
"db:check": "turbo run db:check",
"db:generate": "turbo run db:generate",
"db:migrate": "turbo run db:migrate",
"db:push": "turbo run db:push",
"ui:add": "turbo run ui:add",
"zero:migrate": "turbo run zero:migrate",
"zero:deploy-permissions": "turbo run zero:deploy-permissions",
"release": "release-it",
"release:patch": "release-it patch",
"release:minor": "release-it minor",
"release:major": "release-it major",
"release:next-version": "release-it --ci --release-version | tail -n1",
"prepare": "husky",
"clean": "rm -rf **/node_modules **/.turbo **/.next **/dist"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@release-it/conventional-changelog": "^9.0.2",
"auto-changelog": "^2.5.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"release-it": "^17.10.0",
"turbo": "catalog:",
"typescript": "catalog:"
},
"packageManager": "pnpm@9.15.3",
"engines": {
"node": "~20"
}
}