-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpackage.json
32 lines (32 loc) · 835 Bytes
/
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
{
"name": "radzionkit",
"packageManager": "yarn@4.5.3",
"version": "0.0.1",
"private": true,
"workspaces": [
"./**"
],
"devDependencies": {
"@eslint/compat": "^1.2.4",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.16.0",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"eslint": "^9.16.0",
"eslint-plugin-react-hooks": "^5.1.0",
"globals": "^15.13.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "^3.4.2",
"syncpack": "^13.0.0",
"typescript": "^5.7.2"
},
"scripts": {
"postinstall": "husky install",
"format": "eslint --fix && prettier --write",
"typecheck": "tsc --noEmit",
"sync-packages": "syncpack fix-mismatches"
}
}