-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.23 KB
/
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
39
40
41
42
43
44
{
"name": "city-hunt",
"license": "MIT",
"version": "0.0.0",
"type": "module",
"scripts": {
"prepare": "husky install",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"dependencies": {
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@fontsource/roboto": "^4.5.8",
"@mui/icons-material": "^5.10.6",
"@mui/material": "^5.10.7",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/core": ">=7.0.0 <8.0.0",
"@eslint/create-config": "^0.3.1",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"@vitejs/plugin-react": "^2.1.0",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.0",
"lint-staged": "^13.0.3",
"prettier": "2.7.1",
"typescript": "^4.6.4",
"vite": "^3.1.0",
"vite-tsconfig-paths": "^3.5.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --fix --cache --cache-location node_modules/.cache/eslintcache",
"*.{js,jsx,ts,tsx,css,md}": "prettier --write"
}
}