-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.61 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.61 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
77
78
79
80
81
82
83
84
85
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "jest --config jest.config.ts",
"test:coverage": "jest --coverage",
"cypress:open": "cypress open"
},
"dependencies": {
"@react-spring/web": "^9.7.5",
"@reduxjs/toolkit": "^2.5.0",
"@tanstack/react-query": "^5.64.1",
"autoprefixer": "^10.4.20",
"chart.js": "^4.4.7",
"framer-motion": "^12.4.5",
"next": "14.2.20",
"next-pwa": "^5.6.0",
"next-themes": "^0.4.4",
"react": "^18",
"react-chartjs-2": "^5.3.0",
"react-daum-postcode": "^3.2.0",
"react-dom": "^18",
"react-hook-form": "^7.54.2",
"react-intersection-observer": "^9.14.1",
"react-kakao-maps-sdk": "^1.1.27",
"react-redux": "^9.2.0",
"redux-persist": "^6.0.0",
"socket.io-client": "^4.8.1",
"swiper": "^11.2.4"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/plugin-syntax-jsx": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@chromatic-com/storybook": "^3.2.2",
"@eslint/js": "^9.14.0",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-interactions": "^8.4.7",
"@storybook/addon-onboarding": "^8.4.7",
"@storybook/blocks": "^8.4.7",
"@storybook/nextjs": "^8.4.7",
"@storybook/react": "^8.4.7",
"@storybook/test": "^8.4.7",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.1",
"@types/dom-speech-recognition": "^0.0.4",
"@types/jest": "^29.5.14",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/redux-persist": "^4.0.0",
"cypress": "^13.17.0",
"eslint": "^8.57.1",
"eslint-config-next": "15.0.3",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-storybook": "^0.11.0",
"globals": "^15.12.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"storybook": "^8.4.7",
"tailwindcss": "^3.4.17",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5"
}
}