-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.24 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.24 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "github-finder",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite --host",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint . --fix",
"prettier": "prettier --write .",
"prepare": "husky install"
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^6.2.2"
},
"devDependencies": {
"@honkhonk/vite-plugin-svgr": "^1.1.0",
"@vitejs/plugin-react": "^1.0.7",
"autoprefixer": "^10.4.4",
"daisyui": "^2.13.3",
"eslint": "^8.11.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-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"postcss": "^8.4.12",
"prettier": "2.6.0",
"prop-types": "^15.8.1",
"tailwindcss": "^3.0.23",
"vite": "^2.8.0"
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"eslint --fix",
"git add"
],
"*.{css,md,js,jsx}": [
"prettier --write",
"git add"
],
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}