-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.05 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
38
39
{
"name": "zod-error-viewer-monorepo",
"private": true,
"version": "1.0.0",
"license": "MIT",
"author": {
"name": "Ben Lorantfy",
"url": "https://www.benlorantfy.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/BenLorantfy/zod-error-viewer"
},
"scripts": {
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"format:check": "prettier --check .",
"prepare": "husky"
},
"lint-staged": {
"**/*.{js,ts,tsx,jsx}": [
"eslint --fix",
"prettier --check --ignore-unknown"
],
"**/*.json": "prettier --check --ignore-unknown"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"eslint-plugin-storybook": "^0.8.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.5",
"prettier": "3.3.0"
}
}