forked from metaphor-xyz/davatar-helpers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 914 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
{
"scripts": {
"check": "npm run fmt:check && npm run lint",
"fmt": "prettier --config .prettierrc.json --write \"**/*.{ts,tsx,js}\"",
"fmt:check": "prettier --config .prettierrc.json --check \"**/*.{ts,tsx,js}\"",
"lint": "eslint --max-warnings 0 \"**/*.{ts,tsx,js}\"",
"prepare": "husky install"
},
"workspaces": [
"packages/react"
],
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^2.0.4",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"babel-eslint": "^10.1.0",
"eslint": "^7.32.0",
"eslint-config-react-app": "^6.0.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.24.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.1",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2"
}
}