-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.44 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.44 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
{
"name": "vazen",
"version": "0.0.0",
"private": true,
"license": "MIT",
"author": {
"name": "Hashversion",
"email": "hello@hashversion.com",
"url": "https://hashversion.com"
},
"type": "module",
"scripts": {
"build": "turbo build",
"build:web:prod": "turbo build:prod -F web",
"build:web:stage": "turbo build:stage -F web",
"clean": "turbo clean",
"commit": "commit",
"db:generate": "turbo run db:generate",
"db:migrate": "turbo run db:migrate",
"db:push": "turbo run db:push",
"db:studio": "turbo run db:studio",
"dev:web": "turbo dev -F web...",
"docker:clean": "docker compose down -v",
"docker:down": "docker compose down",
"docker:up": "docker compose up -d",
"format": "prettier --write \"**/*.{css,ts,tsx,md,mdx}\"",
"postinstall": "lefthook install",
"knip": "knip --no-exit-code",
"lint": "turbo lint",
"turbo:devtools": "turbo devtools",
"typecheck": "turbo run typecheck"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@commitlint/prompt-cli": "^20.5.0",
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
"@types/node": "catalog:",
"knip": "^5.86.0",
"lefthook": "^2.1.4",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"turbo": "2.8.17",
"typescript": "catalog:"
},
"packageManager": "pnpm@10.32.1",
"engines": {
"node": ">=22"
}
}