-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.47 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
45
46
47
48
49
50
51
52
53
{
"name": "www",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --port 3000",
"build": "tsc && vite build",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"prepare": "husky install",
"lint-fix": "eslint '**/*.{ts,tsx}' --ext .ts, .tsx --fix",
"lint-staged": "yarn type-check && lint-staged",
"type-check": "tsc --project ./tsconfig.json --noEmit"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"dependencies": {
"@types/react-router-dom": "^5.3.3",
"axios": "^1.4.0",
"jose": "^4.14.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet-async": "^1.3.0",
"react-icons": "^4.8.0",
"react-router-dom": "^6.10.0",
"recoil": "^0.7.7",
"recoil-persist": "^4.2.0"
},
"devDependencies": {
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.59.1",
"@vitejs/plugin-react": "^4.0.0",
"classnames": "^2.3.2",
"eslint": "^8.39.0",
"eslint-config-naver": "^2.1.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.0",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"sass": "^1.62.1",
"typescript": "^5.0.2",
"vite": "^4.3.2"
}
}