-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 879 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 879 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
{
"private": true,
"name": "react-hooks",
"scripts": {
"clean": "turbo run clean && rm -rf .turbo node_modules .turbo-cookie .swc",
"build": "turbo run build",
"start": "turbo run start --no-cache --continue",
"format": "prettier --write \"**/*.{ts,tsx,md,mdx,json,js,css,scss,html,mjs}\"",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"changeset": "changeset",
"release": "turbo run build --filter=@wethegit/react-hooks && changeset publish",
"version": "changeset version"
},
"devDependencies": {
"prettier": "^3.3.3",
"turbo": "latest",
"typescript": "5.7.3"
},
"dependencies": {
"@changesets/changelog-github": "~0.5.0",
"@changesets/cli": "~2.27.8"
},
"packageManager": "yarn@1.22.19",
"workspaces": [
"apps/*",
"packages/*"
],
"license": "MIT",
"version": "0.0.1"
}