-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 917 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 917 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
{
"name": "toolkit",
"private": true,
"scripts": {
"test": "turbo test",
"test:watch": "turbo test:watch",
"build": "turbo build",
"dev": "turbo dev",
"check-types": "turbo check-types",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"changeset": "changeset",
"update-versions": "changeset version",
"publish-latest": "turbo run build lint check-types && changeset version && changeset publish && git push --follow-tags",
"publish-beta": "turbo run build lint check-types && changeset version && changeset publish --tag beta"
},
"devDependencies": {
"@changesets/cli": "^2.27.11",
"@eco-foundation/routes-ts": "^2.8.17",
"prettier": "^3.2.5",
"turbo": "^2.3.3",
"typescript": "5.5.4"
},
"engines": {
"node": ">=18"
},
"packageManager": "npm@10.8.1",
"workspaces": [
"apps/*",
"packages/*"
]
}