-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
85 lines (85 loc) · 2.64 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
{
"name": "test",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "vitest",
"chromatic": "dotenv -e .env npx chromatic --project-token=env.CHROMATIC_PROJECT_TOKEN"
},
"dependencies": {
"@reduxjs/toolkit": "^1.9.3",
"@sentry/react": "^7.109.0",
"@sentry/tracing": "^7.42.0",
"@stomp/stompjs": "^7.0.0",
"@storybook/icons": "^1.2.9",
"@storybook/testing-library": "^0.2.2",
"@storybook/testing-react": "^2.0.1",
"@tanstack/react-query": "^4.26.1",
"@tanstack/react-query-devtools": "^4.35.7",
"@testing-library/react": "^15.0.2",
"@types/react-modal": "^3.16.0",
"axios": "^1.3.4",
"date-fns": "^2.30.0",
"dotenv-cli": "^7.4.2",
"jwt-decode": "^3.1.2",
"loadash": "^1.0.0",
"moment": "^2.30.1",
"prettier": "^2.8.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.5",
"react-icons": "^5.0.1",
"react-infinite-scroller": "^1.2.6",
"react-intersection-observer": "^9.4.3",
"react-kakao-maps-sdk": "^1.1.24",
"react-query": "^3.39.3",
"react-router-dom": "^6.10.0",
"styled-components": "^5.3.8",
"vitest": "^1.5.0"
},
"devDependencies": {
"@playwright/test": "^1.44.0",
"@storybook/addon-a11y": "^7.6.19",
"@storybook/addon-essentials": "^7.6.17",
"@storybook/addon-interactions": "^7.6.17",
"@storybook/addon-links": "^7.6.17",
"@storybook/addon-onboarding": "^1.0.11",
"@storybook/blocks": "^7.6.17",
"@storybook/react": "^7.6.17",
"@storybook/react-vite": "^7.6.17",
"@storybook/test": "^7.6.17",
"@types/lodash": "^4.14.200",
"@types/node": "^18.15.0",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@types/react-infinite-scroller": "^1.2.5",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@vitejs/plugin-react": "^3.1.0",
"chromatic": "^11.3.2",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.8.0",
"jsdom": "^24.0.0",
"msw": "^1.3.1",
"storybook": "^7.6.17",
"typescript": "^4.9.5",
"vite": "^4.4.9",
"vite-tsconfig-paths": "^4.0.5"
},
"msw": {
"workerDirectory": "public"
}
}