-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.13 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.13 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
{
"name": "bc-fe",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"prepare": "husky install",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"build-types": "npx openapi-typescript https://api.pitchain.kro.kr/v3/api-docs -o src/types/apis.ts --required"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.js": "eslint --cache --fix"
},
"dependencies": {
"@tailwindcss/vite": "^4.0.9",
"@tanstack/react-query": "^5.67.1",
"axios": "^1.8.1",
"clsx": "^2.1.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hot-toast": "^2.5.2",
"react-icons": "^5.5.0",
"react-router": "^7.2.0",
"sicilian": "^3.0.9",
"tailwindcss": "^4.0.9",
"utilinent": "^0.0.7"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.5",
"@eslint/js": "^9.21.0",
"@storybook/addon-essentials": "^8.6.3",
"@storybook/addon-onboarding": "^8.6.3",
"@storybook/blocks": "^8.6.3",
"@storybook/experimental-addon-test": "^8.6.3",
"@storybook/react": "^8.6.3",
"@storybook/react-vite": "^8.6.3",
"@storybook/test": "^8.6.3",
"@types/node": "^22.13.9",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/browser": "^3.0.7",
"@vitest/coverage-v8": "^3.0.7",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.0.2",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.19",
"eslint-plugin-storybook": "^0.11.3",
"globals": "^15.15.0",
"husky": "^8.0.3",
"lint-staged": "^15.4.3",
"playwright": "^1.50.1",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"storybook": "^8.6.3",
"typescript": "~5.7.2",
"typescript-eslint": "^8.24.1",
"vite": "^6.2.0",
"vitest": "^3.0.7"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}