-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.18 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.18 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "homes-tracker",
"private": true,
"type": "module",
"scripts": {
"bot:start": "dotenv -c -- pnpm --filter=@/bot start",
"format": "prettier --write '**/*.{js,jsx,ts,tsx,json,css}'",
"format:verify": "prettier --check '**/*.{js,jsx,ts,tsx,json,css}'",
"lint": "eslint --max-warnings=0",
"lint-staged": "lint-staged",
"typecheck": "pnpm -r typecheck",
"web:dev": "dotenv -c -- pnpm --filter=@/web dev"
},
"pre-commit": [
"typecheck",
"lint-staged"
],
"lint-staged": {
"*.{j,t}s{,x}": [
"prettier --write",
"eslint --fix"
]
},
"devDependencies": {
"@eslint/compat": "^1.1.1",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.9.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.5.0",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"dotenv-cli": "^7.4.2",
"eslint": "9.9.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"globals": "^15.9.0",
"lint-staged": "^15.2.9",
"pre-commit": "^1.2.2",
"prettier": "^3.3.3",
"prettier-plugin-packagejson": "^2.5.2",
"typescript": "^5.5.4",
"typescript-eslint": "^8.2.0"
},
"packageManager": "pnpm@9.8.0",
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"eslint": "9",
"eslint-config-airbnb-typescript>@typescript-eslint/eslint-plugin": "8",
"eslint-config-airbnb-typescript>@typescript-eslint/parser": "8",
"next": "19.0.0-rc-fb9a90fa48-20240614"
}
},
"patchedDependencies": {
"@mapbox/mapbox-gl-draw": "patches/@mapbox__mapbox-gl-draw.patch",
"@nextui-org/listbox": "patches/@nextui-org__listbox.patch",
"@trpc/react-query": "patches/@trpc__react-query.patch",
"mapbox-gl-draw-freehand-mode": "patches/mapbox-gl-draw-freehand-mode.patch",
"react-icons": "patches/react-icons.patch"
}
},
"overrides": {
"@types/react": "npm:types-react@rc",
"@types/react-dom": "npm:types-react-dom@rc"
}
}