-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
81 lines (81 loc) ยท 2.43 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
{
"name": "2024-beotkkotthon-team-28-fe",
"private": true,
"version": "0.0.0",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint . --ext js,jsx --ignore-pattern '!/.storybook/*' --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"postinstall": "husky install",
"format": "prettier --cache --write .",
"prepare": "husky install",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"axios": "^1.6.7",
"dotenv": "^16.4.5",
"framer-motion": "^11.0.12",
"http-proxy-middleware": "^3.0.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-calendar-heatmap": "^1.9.0",
"react-cookie": "^7.1.0",
"react-custom-calendar-heatmap": "^1.0.11",
"react-dom": "^18.2.0",
"react-router-dom": "^6.22.3",
"storybook-addon-react-router-v6": "^2.0.15",
"swiper": "^11.0.7",
"swiper-bundle": "0.0.1-security",
"swiper-react": "^1.0.0",
"zustand": "^4.5.2"
},
"devDependencies": {
"@playwright/test": "^1.45.2",
"@storybook/addon-essentials": "8.2.4",
"@storybook/addon-interactions": "8.2.4",
"@storybook/addon-links": "8.2.4",
"@storybook/addon-onboarding": "8.2.4",
"@storybook/blocks": "8.2.4",
"@storybook/react": "8.2.4",
"@storybook/react-vite": "8.2.4",
"@storybook/test": "8.2.4",
"@types/node": "^20.14.11",
"@types/react": "^18.2.64",
"@types/react-dom": "^18.2.21",
"@vitejs/plugin-react": "^4.2.1",
"chromatic": "^11.5.5",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"eslint-plugin-storybook": "^0.8.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"storybook": "8.2.4",
"vite": "^5.1.6",
"vite-plugin-mock": "^3.0.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --cache --write",
"eslint --cache --fix --max-warnings=0 --ignore-pattern !/.storybook"
],
"*.{js,jsx}": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
},
"eslintConfig": {
"ignorePatterns": [
"!/.storybook/**"
]
},
"proxy": "https://api.startupvalley.site/"
}