-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 962 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 962 Bytes
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": "versend",
"private": true,
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"prepare": "husky",
"dev": "turbo dev",
"build": "turbo build",
"check-types": "turbo check-types",
"format": "turbo format",
"lint": "turbo lint",
"dev:native": "turbo -F native dev",
"dev:web": "turbo -F web dev",
"bumpp": "bumpp -r"
},
"dependencies": {
"@t3-oss/env-core": "^0.13.10",
"@t3-oss/env-nextjs": "^0.13.10",
"@vermaysha/discord-webhook": "^1.4.0"
},
"devDependencies": {
"@biomejs/biome": "2.3.7",
"@types/bun": "latest",
"bumpp": "^10.4.1",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"turbo": "^2.8.20",
"ultracite": "6.3.6"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,jsonc,css,scss,md,mdx}": [
"bun x ultracite fix"
]
},
"packageManager": "bun@1.3.11",
"peerDependencies": {
"typescript": "^5"
}
}