-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 915 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 915 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
{
"name": "vernostudio",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"type": "module",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"test": "turbo test",
"test:coverage": "turbo test:coverage",
"lint": "ultracite check",
"format": "ultracite fix",
"typecheck": "turbo run typecheck",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "turbo build --filter=verno && changeset publish",
"prepare": "husky"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@typescript/native-preview": "^7.0.0-dev.20260522.1",
"husky": "^9.1.7",
"mitata": "^1.0.34",
"oxfmt": "^0.51.0",
"oxlint": "^1.66.0",
"turbo": "^2.9.14",
"typescript": "6.0.3",
"ultracite": "7.7.0"
},
"engines": {
"node": ">=18"
},
"packageManager": "bun@1.3.12"
}