-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpackage.json
39 lines (39 loc) · 1.19 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
39
{
"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": "npm run format && npm run lint && npm run typecheck",
"codequality:fix": "npm run format:fix && npm run lint:fix && npm run typecheck",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"dev": "turbo dev",
"format": "prettier --check --ignore-unknown .",
"format:fix": "prettier --write --ignore-unknown .",
"lint": "turbo lint",
"lint:fix": "turbo lint:fix",
"prepare": "husky && npm run build:bundle",
"typecheck": "turbo typecheck",
"updates": "npm-check-updates -i -ws --root"
},
"devDependencies": {
"all-contributors-cli": "^6.26.1",
"husky": "^9.1.4",
"lint-staged": "^15.2.11",
"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": "npm@10.8.2",
"engines": {
"node": ">=18"
}
}