-
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 762 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 762 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
{
"private": true,
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"lint": "biome check .",
"check:types": "turbo run check:types",
"test": "turbo run test",
"test:dev": "npm run test:dev -w tests",
"bundlesize": "turbo run bundlesize",
"add-changeset": "npx changeset",
"bump-version": "npx changeset version",
"release": "turbo run build --filter=react-call && npx changeset publish",
"phoenix": "rm -rf node_modules && npm i",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/cli": "^2.29.5",
"husky": "^9.1.7",
"turbo": "latest"
},
"workspaces": [
"demo",
"react-call",
"tests"
],
"packageManager": "npm@11.1.0"
}