-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
114 lines (114 loc) · 3.55 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
110
111
112
113
114
{
"name": "myongji-graduate-next",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"dev:mock": "concurrently --kill-others \"cross-env API_MOCKING=enable next dev\" \"cross-env MOCK_SERVER=true npx tsx watch ./app/mocks/http.ts\"",
"start:mock": "concurrently --kill-others \"cross-env API_MOCKING=enable next start\" \"cross-env MOCK_SERVER=true npx tsx watch ./app/mocks/http.ts\"",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"mock": "npx tsx watch ./app/mocks/http.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:storybook": "test-storybook",
"build-storybook": "storybook build",
"prettier": "prettier --write .",
"prepare": "husky install || true",
"lint-staged": "lint-staged",
"storybook": "storybook dev -p 6006",
"type": "tsc --noEmit",
"cypress:open": "cypress open",
"analyze": "ANALYZE=true npm run build"
},
"dependencies": {
"@channel.io/channel-web-sdk-loader": "^2.0.0",
"@headlessui/react": "^1.7.18",
"@headlessui/tailwindcss": "^0.2.0",
"@heroicons/react": "^2.1.1",
"@mswjs/http-middleware": "^0.9.2",
"@next/bundle-analyzer": "^15.1.0",
"@next/third-parties": "^14.2.13",
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-toast": "^1.1.5",
"@tanstack/react-query": "^5.32.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"express": "^4.18.2",
"fetch-ax": "^2.0.3",
"jotai": "^2.7.0",
"lucide-react": "^0.336.0",
"next": "^14.2.13",
"react": "^18",
"react-dom": "^18",
"tailwind-merge": "^2.2.1",
"tailwindcss-animate": "^1.0.7",
"usehooks-ts": "^3.0.2",
"vaul": "^0.9.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@storybook/addon-a11y": "^8.2.4",
"@storybook/addon-essentials": "^8.0.6",
"@storybook/addon-interactions": "^8.0.6",
"@storybook/addon-links": "^8.0.6",
"@storybook/addon-onboarding": "^8.0.6",
"@storybook/blocks": "^8.0.6",
"@storybook/jest": "^0.2.3",
"@storybook/nextjs": "^8.0.6",
"@storybook/react": "^8.0.6",
"@storybook/test": "^8.0.6",
"@storybook/test-runner": "^0.17.0",
"@storybook/testing-library": "^0.2.2",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"axe-playwright": "^2.0.1",
"chromatic": "^10.9.4",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"cypress": "^13.9.0",
"eslint": "^8",
"eslint-config-next": "14.1.0",
"eslint-plugin-storybook": "^0.6.15",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.2",
"msw": "^2.1.7",
"msw-storybook-addon": "^2.0.3",
"postcss": "^8",
"prettier": "3.2.5",
"storybook": "^8.0.6",
"tailwindcss": "^3.3.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5",
"undici": "^5.28.3"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"msw": {
"workerDirectory": [
"public"
]
}
}