-
Notifications
You must be signed in to change notification settings - Fork 199
/
package.json
36 lines (36 loc) · 918 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
{
"dependencies": {
"@types/react": "^18.2.18",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.0.4",
"autoprefixer": "^10.4.14",
"axios": "^1.4.0",
"eslint": "^8.38.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"postcss": "^8.4.23",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.8.0",
"react-router-dom": "^6.11.2",
"react-spinners": "^0.13.8",
"react-syntax-highlighter": "^15.5.0",
"tailwindcss": "^3.3.2",
"vite": "^4.3.2"
},
"devDependencies": {
"husky": "^8.0.3",
"prettier": "^3.0.1"
},
"scripts": {
"format": "prettier --write '**/*.{js,jsx,ts,tsx,json,html,css,scss,md}'",
"prepush": "npm run format"
},
"husky": {
"hooks": {
"pre-push": "npm run prepush"
}
}
}