generated from Park-min-hyoung/check-location
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.53 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.53 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "react-template-vite-ts",
"private": true,
"version": "0.1.0",
"type": "module",
"author": {
"name": "Khushal-ag",
"email": "starkhush5@gmail.com"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"preview": "tsc && vite build && vite preview",
"type-check": "tsc --noEmit",
"lint": "npx eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"fix": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0 --fix",
"fmt": "pnpm fmt:check && pnpm fmt:write",
"fmt:check": "prettier --check \"**/*.{ts,tsx,mdx}\" --cache",
"fmt:write": "prettier --write \"**/*.{ts,tsx,mdx}\" --cache",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "jest --coverage=false --watchAll=false",
"prepare": "husky"
},
"lint-staged": {
"**/*.{ts,tsx,mdx}": [
"eslint src --ext ts,tsx --report-unused-disable-directives --fix",
"prettier --write \"**/*.{ts,tsx,mdx}\" --cache"
]
},
"dependencies": {
"@radix-ui/react-popover": "^1.1.6",
"@radix-ui/react-progress": "^1.1.2",
"@radix-ui/react-slot": "^1.1.1",
"@tanstack/react-query": "^5.65.0",
"axios": "^1.7.9",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"es-toolkit": "^1.31.0",
"lucide-react": "^0.473.0",
"react": "^18.3.1",
"react-calendar": "^5.1.0",
"react-dom": "^18.3.1",
"react-error-boundary": "^5.0.0",
"react-helmet-async": "^2.0.5",
"react-kakao-maps-sdk": "^1.1.27",
"react-router": "^7.1.3",
"react-toastify": "^11.0.3",
"zustand": "^5.0.3"
},
"devDependencies": {
"@chromatic-com/storybook": "3.2.4",
"@commitlint/config-conventional": "^19.7.1",
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
"@storybook/addon-essentials": "8.5.3",
"@storybook/addon-interactions": "8.5.3",
"@storybook/addon-onboarding": "8.5.3",
"@storybook/blocks": "8.5.3",
"@storybook/react": "8.5.3",
"@storybook/react-vite": "8.5.3",
"@storybook/test": "8.5.3",
"@tanstack/react-query-devtools": "^5.65.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@total-typescript/ts-reset": "^0.6.1",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.14",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-react-swc": "^3.7.2",
"autoprefixer": "^10.4.20",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cssnano": "^7.0.6",
"es-toolkit": "^1.32.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.18",
"eslint-plugin-storybook": "^0.11.2",
"eslint-plugin-tailwindcss": "^3.18.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"json-server": "1.0.0-beta.3",
"lint-staged": "^15.4.3",
"msw": "^2.7.0",
"postcss": "^8.5.1",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.10",
"storybook": "8.5.3",
"tailwind-merge": "^2.6.0",
"tailwindcss": "^3.4.17",
"tailwindcss-animate": "^1.0.7",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"vite": "^5.4.11",
"vite-plugin-svgr": "^4.3.0"
},
"msw": {
"workerDirectory": [
"public"
]
}
}