|
4 | 4 | "private": true, |
5 | 5 | "packageManager": "pnpm@7.6.0", |
6 | 6 | "engines": { |
7 | | - "node": ">=16.13.0", |
| 7 | + "node": ">=16.14.0", |
8 | 8 | "pnpm": ">=7.6" |
9 | 9 | }, |
10 | 10 | "workspaces": [ |
11 | | - "packages/*" |
| 11 | + "packages/*", |
| 12 | + "website" |
12 | 13 | ], |
13 | 14 | "scripts": { |
14 | | - "lint": "eslint --ext .js,.jsx,.ts,.tsx ./packages", |
15 | | - "lint:fix": "eslint --fix --ext .js,.jsx,.ts,.tsx ./packages", |
16 | | - "format": "prettier --check 'packages/**/*.{js,jsx,ts,tsx}'", |
17 | | - "format:fix": "prettier --write 'packages/**/*.{js,jsx,ts,tsx}'", |
| 15 | + "lint": "eslint --ext .js,.jsx,.ts,.tsx .", |
| 16 | + "lint:fix": "eslint --fix --ext .js,.jsx,.ts,.tsx .", |
| 17 | + "format": "prettier --check './**/*.{js,jsx,ts,tsx}'", |
| 18 | + "format:fix": "prettier --write './**/*.{js,jsx,ts,tsx}'", |
18 | 19 | "typecheck": "tsc --noEmit", |
19 | 20 | "test": "jest", |
20 | 21 | "prebuild": "npm run typecheck && npm run lint && npm run format", |
21 | | - "build": "turbo run build", |
22 | | - "docs:clean": "rimraf ./docs", |
23 | | - "docs:gen": "typedoc" |
| 22 | + "build": "turbo run build --filter=./packages/*", |
| 23 | + "docs": "npm run build -w website" |
24 | 24 | }, |
25 | 25 | "devDependencies": { |
26 | 26 | "@testing-library/jest-dom": "^5.16.5", |
27 | 27 | "@testing-library/react": "^13.3.0", |
28 | 28 | "@types/jest": "^28.1.8", |
29 | 29 | "@types/node": "^18.7.13", |
30 | | - "@types/react": "^18.0.17", |
31 | | - "@types/react-dom": "^18.0.6", |
32 | 30 | "@typescript-eslint/eslint-plugin": "^5.35.1", |
33 | 31 | "@typescript-eslint/parser": "^5.35.1", |
34 | 32 | "eslint": "^8.23.0", |
|
41 | 39 | "jest": "^28.1.3", |
42 | 40 | "jest-environment-jsdom": "^28.1.3", |
43 | 41 | "prettier": "^2.7.1", |
44 | | - "react": "^18.2.0", |
45 | | - "react-dom": "^18.2.0", |
| 42 | + "react": "^18.0.0", |
| 43 | + "react-dom": "^18.0.0", |
46 | 44 | "rimraf": "^3.0.2", |
47 | 45 | "ts-jest": "^28.0.8", |
48 | 46 | "ts-node": "^10.9.1", |
49 | 47 | "tsup": "^6.2.3", |
50 | 48 | "turbo": "^1.4.3", |
51 | | - "typedoc": "^0.23.11", |
52 | | - "typedoc-plugin-extras": "^2.3.0", |
53 | | - "typedoc-theme-hierarchy": "^3.0.0", |
54 | | - "typescript": "^4.7.4" |
| 49 | + "typescript": "^4.8.3" |
55 | 50 | } |
56 | 51 | } |
0 commit comments