-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
109 lines (109 loc) · 3.16 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
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"contributors": [
{
"name": "Jo Damin",
"email": "[email protected]"
},
{
"name": "Lee Jiwon",
"email": "[email protected]"
},
{
"name": "Kim Jeonguk",
"email": "[email protected]"
}
],
"scripts": {
"dev": "vite",
"dev:dev": "vite --mode dev",
"dev:prod": "vite --mode prod",
"build": "tsc && vite build",
"build:dev": "tsc && vite build --mode dev",
"build:prod": "tsc && vite build --mode prod",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"test": "jest",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"chromatic": "npx chromatic --project-token=chpt_30b874e677b8bf8"
},
"dependencies": {
"@emotion/babel-preset-css-prop": "^11.12.0",
"@emotion/css": "^11.13.5",
"@emotion/react": "^11.13.5",
"@emotion/styled": "^11.13.5",
"@headlessui/react": "^1.7.19",
"@heroicons/react": "^2.2.0",
"@storybook/preview-api": "^8.4.7",
"@tanstack/react-query": "^5.62.3",
"@types/react-grid-layout": "^1.3.5",
"@types/react-router-dom": "^5.3.3",
"axios": "^1.7.9",
"emotion-normalize": "^11.0.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"event-source-polyfill": "^1.0.31",
"lottie-react": "^2.4.0",
"postcss-import": "^16.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-grid-layout": "^1.5.0",
"react-router-dom": "^6.28.0",
"styled-components": "^6.1.13",
"twin.macro": "^3.4.1",
"vite-plugin-babel-macros": "^1.0.6",
"zustand": "^4.5.5"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.9.0",
"@emotion/babel-plugin": "^11.13.5",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-interactions": "^8.4.7",
"@storybook/addon-links": "^8.4.7",
"@storybook/addon-onboarding": "^8.4.7",
"@storybook/addon-storysource": "^8.4.7",
"@storybook/blocks": "^8.4.7",
"@storybook/react": "^8.4.7",
"@storybook/react-vite": "^8.4.7",
"@storybook/test": "^8.4.7",
"@types/event-source-polyfill": "^1.0.5",
"@types/jest": "^29.5.14",
"@types/react": "^18.3.14",
"@types/react-dom": "^18.3.2",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-react-swc": "^3.7.2",
"autoprefixer": "^10.4.20",
"chromatic": "^11.20.0",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.16",
"eslint-plugin-storybook": "^0.8.0",
"jest": "^29.7.0",
"jest-transform-stub": "^2.0.0",
"msw": "^2.6.8",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"storybook": "^8.4.7",
"tailwindcss": "^3.4.16",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2",
"vite": "^5.4.11",
"vite-plugin-pwa": "^0.19.8"
},
"babelMacros": {
"twin": {
"preset": "styled-components"
}
},
"msw": {
"workerDirectory": [
"public"
]
}
}