-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 3.04 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
{
"name": "zebeqo.dev",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"storybook": "storybook dev -p 6007",
"build-storybook": "storybook build",
"prepare": "husky install",
"postinstall": "prisma generate",
"vercel-build": "prisma generate && next build"
},
"dependencies": {
"@heroicons/react": "2.0.17",
"@prisma/client": "4.13.0",
"@radix-ui/react-separator": "1.0.2",
"@radix-ui/react-tooltip": "1.0.5",
"@tanstack/react-query": "4.29.5",
"@tanstack/react-query-devtools": "4.29.6",
"@tw-classed/react": "1.4.4",
"@vercel/analytics": "1.0.1",
"clsx": "1.2.1",
"contentlayer": "0.3.2",
"core-js": "3.30.1",
"dayjs": "1.11.7",
"framer-motion": "10.12.7",
"jotai": "2.0.4",
"jotai-devtools": "0.5.2",
"lxgw-wenkai-lite-webfont": "1.7.0",
"mdast-util-toc": "6.1.1",
"next": "13.3.4",
"next-contentlayer": "0.3.2",
"next-themes": "0.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-tweet": "2.0.1",
"rehype-autolink-headings": "6.1.1",
"rehype-pretty-code": "0.9.5",
"rehype-slug": "5.1.0",
"remark": "14.0.2",
"remark-gfm": "3.0.1",
"shiki": "0.14.2",
"tailwind-merge": "1.12.0",
"tailwindcss-radix": "2.8.0",
"unist-util-visit": "4.1.2",
"use-debounce": "9.0.4",
"zod": "3.21.4"
},
"devDependencies": {
"@radix-ui/colors": "0.1.8",
"@storybook/addon-actions": "7.0.8",
"@storybook/addon-essentials": "7.0.8",
"@storybook/addon-interactions": "7.0.8",
"@storybook/addon-links": "7.0.8",
"@storybook/addon-storysource": "7.0.8",
"@storybook/blocks": "7.0.8",
"@storybook/jest": "0.1.0",
"@storybook/nextjs": "7.0.8",
"@storybook/react": "7.0.8",
"@storybook/test-runner": "0.10.0",
"@storybook/testing-library": "0.1.0",
"@swc-jotai/debug-label": "0.0.10",
"@swc-jotai/react-refresh": "0.0.8",
"@tailwindcss/typography": "0.5.9",
"@tanstack/eslint-plugin-query": "4.29.4",
"@types/node": "18.16.3",
"@types/react": "18.2.0",
"@types/react-dom": "18.2.1",
"@typescript-eslint/eslint-plugin": "5.59.2",
"@typescript-eslint/parser": "5.59.2",
"autoprefixer": "10.4.14",
"css-loader": "6.7.3",
"eslint": "8.39.0",
"eslint-config-next": "13.3.4",
"eslint-plugin-storybook": "0.6.12",
"husky": "8.0.3",
"lint-staged": "13.2.2",
"postcss": "8.4.23",
"postcss-loader": "7.3.0",
"prettier": "2.8.8",
"prettier-plugin-prisma": "4.13.0",
"prettier-plugin-tailwindcss": "0.2.8",
"prisma": "4.13.0",
"storybook": "7.0.8",
"storybook-dark-mode": "3.0.0",
"style-loader": "3.3.2",
"tailwindcss": "3.3.2",
"tailwindcss-animate": "1.0.5",
"type-fest": "3.9.0",
"typescript": "5.0.4",
"windy-radix-palette": "0.5.0",
"windy-radix-typography": "0.1.0"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown",
"*.{ts,tsx,js,jsx}": "eslint --cache --fix"
}
}