-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.02 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.02 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
{
"name": "fmi",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepare": "husky",
"chromatic": "npx chromatic --project-token=$CHROMATIC_PROJECT_TOKEN",
"test:ci": "jest --ci --runInBand",
"check:all": "run-s test build build-storybook",
"check:fast": "run-p test build-storybook",
"analyze": "ANALYZE=true next build",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:ci": "npm run build && playwright test"
},
"dependencies": {
"@emotion/is-prop-valid": "^1.4.0",
"@sentry/nextjs": "^10.34.0",
"@stomp/stompjs": "^7.2.1",
"@tanstack/react-query": "^5.90.19",
"@tanstack/react-query-devtools": "^5.85.5",
"@vercel/analytics": "^1.5.0",
"@vercel/speed-insights": "^1.2.0",
"axios": "^1.13.5",
"babel-plugin-react-compiler": "^1.0.0",
"clsx": "^2.1.1",
"cookies-next": "^6.1.1",
"date-fns": "^4.1.0",
"framer-motion": "^12.27.0",
"jwt-decode": "^4.0.0",
"lodash": "^4.17.23",
"lodash.throttle": "^4.1.1",
"next": "^15.5.12",
"react": "^19.1.4",
"react-dom": "^19.1.4",
"react-hook-form": "^7.71.1",
"react-intersection-observer": "^10.0.2",
"react-kakao-maps-sdk": "^1.2.0",
"sockjs-client": "^1.6.1",
"swiper": "^12.1.2",
"zod": "^4.1.5",
"zustand": "^5.0.8"
},
"devDependencies": {
"@chromatic-com/storybook": "^4.1.3",
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"@next/bundle-analyzer": "^16.1.3",
"@playwright/test": "^1.55.0",
"@storybook/addon-a11y": "^9.1.17",
"@storybook/addon-docs": "^9.1.17",
"@storybook/nextjs": "^9.1.17",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/lodash": "^4.17.21",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/sockjs-client": "^1.5.4",
"autoprefixer": "^10.4.21",
"babel-jest": "^29.7.0",
"chromatic": "^13.3.4",
"cross-env": "^10.1.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^30.2.0",
"jest-junit": "^16.0.0",
"jest-transformer-svg": "^2.1.0",
"lint-staged": "^16.1.5",
"msw": "^2.12.7",
"npm-run-all": "^4.1.5",
"playwright": "^1.55.0",
"postcss": "^8.5.6",
"prettier": "^3.8.0",
"prettier-plugin-tailwindcss": "^0.7.2",
"storybook": "^9.1.17",
"tailwindcss": "^3.4.13",
"ts-jest": "^29.4.1",
"typescript": "^5"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md,css,scss}": [
"prettier --write"
]
},
"jest-junit": {
"outputDirectory": "reports",
"outputName": "junit.xml"
},
"msw": {
"workerDirectory": [
"public"
]
}
}