forked from SE701Team2/Updog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 920 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
{
"name": "updog",
"version": "1.0.0",
"description": "",
"main": "test-glob.js",
"devDependencies": {
"eslint": "^8.10.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-md": "^1.0.19",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.29.3",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.5",
"prettier": "2.5.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "prettier --check .",
"format": "prettier --write .",
"prepare": "husky install"
},
"lint-staged": {
"**/*.{js,jsx,css,md}": [
"eslint",
"prettier --write"
]
}
}