-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
96 lines (96 loc) · 2.92 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
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
{
"name": "upbrella-front",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"start": "vite --open --host 0.0.0.0 --port 3000",
"dev": "vite --force",
"build": "tsc && vite build",
"lint": "eslint src --ext ts,tsx --cache --max-warnings 0",
"preview": "vite preview",
"format": "prettier --cache --write .",
"prepare": "husky install",
"ts-node": "ts-node -r tsconfig-paths/register ./src/index.ts",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"postinstall": "husky install",
"lint-staged": "lint-staged"
},
"dependencies": {
"@emailjs/browser": "^3.11.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.13.6",
"@tanstack/react-query": "^4.0.10",
"@types/file-saver": "^2.0.5",
"@types/react-router-dom": "^5.3.3",
"axios": "^1.4.0",
"file-saver": "^2.0.5",
"primeicons": "^6.0.1",
"primereact": "^9.6.2",
"qrcode.react": "^3.1.0",
"react": "^18.2.0",
"react-daum-postcode": "^3.1.3",
"react-device-detect": "^2.2.3",
"react-dom": "^18.2.0",
"react-helmet-async": "^2.0.4",
"react-hot-toast": "^2.4.1",
"react-modal-sheet": "^2.0.0",
"react-router-dom": "^6.14.1",
"recoil": "^0.7.7",
"recoil-persist": "^5.1.0",
"swiper": "^10.0.4",
"vite-plugin-html": "^3.2.0",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.0.26",
"@storybook/addon-interactions": "^7.0.26",
"@storybook/addon-links": "^7.0.26",
"@storybook/addon-styling": "^1.3.4",
"@storybook/blocks": "^7.0.26",
"@storybook/builder-vite": "^7.0.26",
"@storybook/react": "^7.0.26",
"@storybook/react-vite": "^7.0.26",
"@storybook/testing-library": "^0.0.14-next.2",
"@types/navermaps": "^3.6.5",
"@types/react": "^18.0.37",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.60.1",
"@vitejs/plugin-react-swc": "^3.0.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"eslint-plugin-storybook": "^0.6.12",
"husky": "^8.0.0",
"lint-staged": "^13.2.3",
"postcss": "^8.4.26",
"prettier": "^2.8.8",
"prop-types": "^15.8.1",
"storybook": "^7.0.26",
"tailwindcss": "^3.3.2",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"vite": "^4.3.9",
"vite-tsconfig-paths": "^4.2.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --cache --write",
"eslint --cache --fix --max-warnings=0"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}