-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1.06 KB
/
package.json
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
34
35
36
{
"name": "react-hooks.abhushan.dev",
"private": true,
"type": "module",
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "pnpm run prettier:format && turbo lint",
"lint:check": "turbo lint:check",
"test": "turbo test",
"test:check": "turbo test:check",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"dev:www": "turbo dev --filter=www",
"build:www": "turbo build --filter=www",
"dev:hooks": "turbo dev --filter=@abhushanaj/react-hooks",
"build:hooks": "turbo build --filter=@abhushanaj/react-hooks",
"test:hooks": "turbo test --filter=@abhushanaj/react-hooks",
"prettier:format": "pnpm exec prettier . --write",
"prettier:check": "pnpm exec prettier . --check",
"prepare": "husky"
},
"devDependencies": {
"@changesets/cli": "^2.27.5",
"@ianvs/prettier-plugin-sort-imports": "^4.2.1",
"husky": "^9.0.11",
"prettier": "^3.2.5",
"prettier-plugin-astro": "^0.14.0",
"prettier-plugin-tailwindcss": "^0.6.2",
"rimraf": "^5.0.7",
"turbo": "^1.13.3"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
}
}