-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 949 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
29
30
31
32
33
34
35
36
37
38
{
"license": "MIT",
"scripts": {
"lint": "eslint --fix",
"prettier:check": "prettier --check .",
"prettier:write": "prettier --write .",
"prepare": "husky install"
},
"dependencies": {
"@material-ui/core": "^4.12.3",
"@typescript-eslint/parser": "^5.0.0",
"cypress": "^9.1.1",
"eslint": "^7.2.0",
"husky": "^7.0.2",
"lint-staged": "^11.2.3",
"material-table": "^1.69.3",
"prettier": "^2.4.1",
"typescript": "^4.4.4"
},
"prettier": "@spotify/prettier-config",
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"devDependencies": {
"@spotify/prettier-config": "^12.0.0",
"eslint-config-airbnb": "18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^1.7.0"
}
}