-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.38 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.38 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "node scripts/local/dev-server.js",
"dev:http": "next dev -H local.wego.monster",
"dev:ci": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"prepare": "husky",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:playwright": "playwright test",
"test:playwright:ui": "playwright test --ui"
},
"devEngines": {
"runtime": {
"name": "node",
"onFail": "error"
},
"packageManager": {
"name": "pnpm",
"version": "10.13.1",
"onFail": "error"
}
},
"engines": {
"node": ">=18.18.0",
"pnpm": ">=10.0.0"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"**/*.{json,css,scss,md,yml,yaml}": [
"prettier --write"
]
},
"dependencies": {
"@rehookify/datepicker": "^6.6.8",
"@stomp/stompjs": "^7.2.1",
"@tanstack/react-form": "^1.27.0",
"@tanstack/react-query": "^5.90.3",
"@tanstack/react-query-devtools": "^5.90.2",
"axios": "^1.13.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"jest-fixed-jsdom": "^0.0.11",
"js-cookie": "^3.0.5",
"motion": "^12.23.24",
"next": "16.1.6",
"react": "19.2.3",
"react-daum-postcode": "^3.2.0",
"react-dom": "19.2.3",
"react-kakao-maps-sdk": "^1.2.0",
"sockjs-client": "^1.6.1",
"swiper": "^12.0.3",
"tailwind-merge": "^3.3.1",
"zod": "^4.1.13",
"zustand": "^5.0.11"
},
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@eslint/eslintrc": "^3",
"@faker-js/faker": "^10.1.0",
"@playwright/test": "^1.57.0",
"@storybook/addon-a11y": "^10.0.5",
"@storybook/addon-docs": "^10.0.5",
"@storybook/nextjs": "^10.1.4",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/postcss": "^4",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/js-cookie": "^3.0.6",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/sockjs-client": "^1.5.4",
"@types/webpack": "^5.28.5",
"@typescript-eslint/eslint-plugin": "^8.46.1",
"@typescript-eslint/parser": "^8.46.1",
"babel-plugin-react-compiler": "^1.0.0",
"chromatic": "^13.3.4",
"dotenv": "^17.2.3",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-perfectionist": "^4.15.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-storybook": "^10.0.5",
"flexisvg": "^1.1.0",
"husky": "^9.1.7",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"kakao.maps.d.ts": "^0.1.40",
"lint-staged": "^16.2.4",
"msw": "^2.11.2",
"orval": "^7.13.2",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.7.0",
"storybook": "^10.1.4",
"svg-sprite": "^2.0.4",
"svgo": "^4.0.0",
"tailwindcss": "^4",
"ts-jest": "^29.4.5",
"typescript": "^5"
},
"msw": {
"workerDirectory": [
"public"
]
},
"packageManager": "pnpm@10.13.1"
}