-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.98 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 2.98 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
{
"name": "yd-blog",
"version": "1.3.0",
"private": true,
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build -o storybook-static",
"storybook:start": "npm run build-storybook && cd storybook-static && http-server -p 6006",
"chromatic": "npx chromatic --exit-zero-on-changes",
"prepare": "husky"
},
"dependencies": {
"@gsap/react": "^2.1.2",
"@radix-ui/react-slot": "^1.0.2",
"@sentry/nextjs": "^9.28.0",
"chart.js": "^4.4.7",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"dotenv": "^16.4.7",
"embla-carousel-react": "^8.0.0",
"gray-matter": "^4.0.3",
"gsap": "^3.12.7",
"lucide-react": "^0.343.0",
"msw": "^2.0.0",
"next": "15.0.7",
"next-compose-plugins": "^2.2.1",
"next-pwa": "^5.6.0",
"next-themes": "^0.2.1",
"react": "^18",
"react-chartjs-2": "^5.3.0",
"react-dom": "^18",
"react-lottie-player": "^2.0.0",
"react-markdown": "^9.0.1",
"react-syntax-highlighter": "^15.6.1",
"rehype-raw": "^7.0.0",
"rehype-slug": "^6.0.0",
"remark": "^15.0.1",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.0",
"remark-html": "^16.0.1",
"rss": "^1.2.2",
"tailwind-merge": "^2.2.1",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.2",
"@storybook/addon-actions": "^8.4.7",
"@storybook/addon-controls": "^8.4.7",
"@storybook/addon-docs": "^8.4.7",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-interactions": "^8.4.7",
"@storybook/addon-onboarding": "^8.4.7",
"@storybook/blocks": "^8.4.7",
"@storybook/experimental-nextjs-vite": "^8.4.7",
"@storybook/nextjs": "^8.4.7",
"@storybook/react": "^8.4.7",
"@storybook/test": "^8.4.7",
"@svgr/webpack": "^8.1.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-syntax-highlighter": "^15.5.11",
"@types/rss": "^0.0.32",
"@typescript-eslint/eslint-plugin": "^8.51.0",
"@typescript-eslint/parser": "^8.51.0",
"autoprefixer": "^10.0.1",
"chromatic": "^11.20.2",
"eslint": "^8",
"eslint-config-next": "15.2.3",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-storybook": "^0.11.1",
"http-server": "^14.1.1",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"msw-storybook-addon": "^2.0.4",
"postcss": "^8",
"postcss-nesting": "^13.0.1",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.11",
"storybook": "^8.4.7",
"tailwindcss": "^3.3.0",
"typescript": "^5"
},
"msw": {
"workerDirectory": [
"public"
]
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"next lint --fix",
"prettier --write"
],
"*.{css,md,json,yaml}": "prettier --write"
}
}