-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 923 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 923 Bytes
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
{
"private": true,
"devDependencies": {
"@commitlint/cli": "^16.0.0",
"@commitlint/config-conventional": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^7.0.0",
"lint-staged": "^12.1.4",
"prettier": "^2.5.1",
"typescript": "^4.5.4"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"lint": "eslint --ignore-path .eslintignore './**/src/**/*.{js,ts,tsx}' --quiet",
"lint:fix": "eslint --fix --ignore-path .eslintignore './**/src/**/*.{ts,tsx}'",
"lint:fix:staged": "eslint --fix --ignore-path .eslintignore",
"prepare": "husky install"
}
}