-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
95 lines (95 loc) · 2.98 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
{
"name": "bangumi.app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"storybook": "storybook dev -p 6007",
"build-storybook": "storybook build",
"test-storybook": "test-storybook --url http://localhost:6007",
"serve-storybook": "pnpm dlx serve storybook-static"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown",
"*.{ts,tsx,js,jsx}": "eslint --cache --fix"
},
"dependencies": {
"@heroicons/react": "2.0.17",
"@radix-ui/react-dialog": "1.0.3",
"@radix-ui/react-dropdown-menu": "2.0.4",
"@radix-ui/react-select": "1.2.1",
"@radix-ui/react-separator": "1.0.2",
"@radix-ui/react-slot": "1.0.1",
"@radix-ui/react-switch": "1.0.2",
"@radix-ui/react-toast": "1.1.3",
"@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.0",
"ahooks": "3.7.7",
"cheerio": "1.0.0-rc.12",
"class-variance-authority": "0.6.0",
"clsx": "1.2.1",
"core-js": "^3.30.1",
"framer-motion": "10.12.4",
"jotai": "2.0.4",
"jotai-devtools": "0.5.1",
"next": "13.3.2",
"next-auth": "4.22.1",
"next-themes": "0.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-intersection-observer": "9.4.3",
"tailwind-merge": "1.12.0",
"tailwindcss-radix": "2.8.0",
"zod": "3.21.4"
},
"devDependencies": {
"@radix-ui/colors": "0.1.8",
"@storybook/addon-actions": "7.0.7",
"@storybook/addon-essentials": "7.0.7",
"@storybook/addon-interactions": "7.0.7",
"@storybook/addon-links": "7.0.7",
"@storybook/addon-mdx-gfm": "7.0.7",
"@storybook/addon-storysource": "7.0.7",
"@storybook/blocks": "7.0.7",
"@storybook/jest": "0.1.0",
"@storybook/manager-api": "7.0.7",
"@storybook/nextjs": "7.0.7",
"@storybook/react": "7.0.7",
"@storybook/test-runner": "0.10.0",
"@storybook/testing-library": "0.1.0",
"@swc-jotai/debug-label": "0.0.9",
"@swc-jotai/react-refresh": "0.0.7",
"@tanstack/eslint-plugin-query": "4.29.4",
"@tomfreudenberg/next-auth-mock": "0.5.6",
"@types/node": "18.16.3",
"@types/react": "18.2.0",
"@types/react-dom": "18.2.1",
"@typescript-eslint/eslint-plugin": "5.59.1",
"@typescript-eslint/parser": "5.59.1",
"autoprefixer": "10.4.14",
"css-loader": "6.7.3",
"eslint": "8.39.0",
"eslint-config-next": "13.3.2",
"eslint-plugin-storybook": "0.6.11",
"husky": "8.0.3",
"lint-staged": "13.2.2",
"postcss": "8.4.23",
"postcss-loader": "7.3.0",
"prettier": "2.8.8",
"prettier-plugin-tailwindcss": "0.2.8",
"storybook": "7.0.7",
"storybook-dark-mode": "3.0.0",
"style-loader": "3.3.2",
"tailwindcss": "3.3.2",
"tailwindcss-animate": "1.0.5",
"typescript": "5.0.4",
"windy-radix-palette": "0.6.0"
}
}