-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.09 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.09 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
{
"private": true,
"packageManager": "pnpm@10.33.0",
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@eslint/js": "^9.39.4",
"@types/node": "^25.5.0",
"eslint": "^9.39.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^17.4.0",
"husky": "^9.1.7",
"jiti": "^2.6.1",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"typescript-eslint": "^8.57.1"
},
"scripts": {
"build": "pnpm -r --parallel run build",
"changeset": "changeset",
"lint": "pnpm exec eslint .",
"lint:fix": "pnpm exec eslint . --fix",
"prepare": "husky",
"release": "pnpm build && changeset publish",
"typecheck": "pnpm -r --parallel run typecheck",
"version-packages": "changeset version"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,mjs}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,css}": "prettier --write"
}
}