-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 751 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 751 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
{
"name": "workspace",
"private": true,
"module": "true",
"type": "module",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"test": "turbo run test",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"gen-hook": "turbo gen hook --config \"turbo/generators/config.cts\" && pnpm format",
"publish-packages": "turbo run build lint test && changeset version && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.29.1",
"@turbo/gen": "^2.5.0",
"date-fns": "^4.1.0",
"prettier": "^3.5.3",
"turbo": "^2.5.0",
"typescript": "5.8.2"
},
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=18.17"
},
"license": "MIT"
}