forked from onderonur/react-infinite-scroll-hook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.21 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
37
38
{
"name": "react-infinite-scroll-hook",
"private": true,
"license": "MIT",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo build",
"build:bundle": "turbo build --filter=react-infinite-scroll-hook",
"codequality:check": "npm run format:check && npm run lint:check && npm run types:check",
"codequality:fix": "npm run format:fix && npm run lint:fix && npm run types:check",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"dev": "turbo dev",
"format:check": "prettier --check --ignore-unknown .",
"format:fix": "prettier --write --ignore-unknown .",
"lint:check": "turbo lint:check",
"lint:fix": "turbo lint:fix",
"prepare": "husky && npm run build:bundle",
"types:check": "turbo types:check",
"updates:check": "npm-check-updates -i -ws --root"
},
"devDependencies": {
"all-contributors-cli": "^6.26.1",
"husky": "^9.1.4",
"npm-check-updates": "^17.0.6",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.0.0",
"prettier-plugin-tailwindcss": "^0.6.6",
"turbo": "^2.0.14"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
}
}