-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.5 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
54
55
56
57
58
{
"name": "blog-daohang",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"prepare": "simple-git-hooks",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"format": "prettier --write \"**/*.{js,ts,tsx,md}\"",
"lint": "eslint \"**/*.{js,ts,tsx}\" --fix"
},
"dependencies": {
"@headlessui/react": "^1.6.6",
"@icon-park/react": "^1.4.2",
"@tanstack/react-query": "^4.0.10",
"axios": "^0.27.2",
"clsx": "^1.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "6"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^3.3.0",
"@types/node": "^18.6.4",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"@vitejs/plugin-react": "^2.0.0",
"autoprefixer": "^10.4.8",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"lint-staged": "^13.0.3",
"msw": "^0.44.2",
"postcss": "^8.4.14",
"prettier": "^2.7.1",
"simple-git-hooks": "^2.8.0",
"tailwindcss": "^3.1.7",
"typescript": "^4.6.4",
"vite": "^3.0.0"
},
"lint-staged": {
"*.{js,ts,tsx,md}": [
"prettier --write"
]
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"msw": {
"workerDirectory": "public"
}
}