-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
37 lines (37 loc) · 1.15 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
{
"private": true,
"scripts": {
"build": "pnpm run --r --filter \"./packages/**\" build",
"test:build": "pnpm run --r --filter \"./packages/**\" test:build",
"lint:check": "eslint",
"lint:fix": "eslint --fix",
"prettier-format": "prettier --config .prettierrc './**/*.ts' --write",
"prettier-check": "prettier --config .prettierrc './**/*.ts' --check",
"prepare": "husky",
"lint": "pnpm run lint:fix && pnpm run prettier-format"
},
"packageManager": "[email protected]",
"lint-staged": {
"**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write",
"eslint --fix"
]
},
"devDependencies": {
"@changesets/cli": "^2.27.11",
"@arethetypeswrong/cli": "^0.16.4",
"@types/eslint__js": "^8.42.3",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-require-extensions": "^0.1.3",
"eslint-plugin-simple-import-sort": "^12.1.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"@eslint/plugin-kit": ">=0.2.3",
"publint": "^0.2.12",
"tsc-watch": "^6.2.0",
"typescript-eslint": "^8.5.0"
}
}