-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 784 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 784 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
{
"name": "domco-monorepo",
"private": true,
"type": "module",
"packageManager": "[email protected]",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"test": "vitest run",
"test:dev": "vitest",
"check": "turbo check",
"format": "prettier --write .",
"build": "turbo build",
"build:packages": "turbo build --filter='./packages/*'",
"changeset": "changeset",
"version": "changeset version",
"release": "npm run build:packages && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@robino/md": "^5.0.0",
"@robino/prettier": "^2.0.3",
"@robino/tsconfig": "^1.1.1",
"prettier": "^3.7.4",
"prettier-plugin-tailwindcss": "^0.7.2",
"turbo": "^2.6.3",
"typescript": "^5.9.3",
"vite": "^7.3.0",
"vitest": "^4.0.15"
}
}