-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
110 lines (110 loc) · 3.56 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
{
"name": "taijutsu",
"version": "0.0.0",
"private": true,
"scripts": {
"prisma": "prisma",
"ui:add": "pnpm dlx shadcn-ui@latest add",
"ui:diff": "pnpm dlx shadcn-ui@latest diff",
"postinstall": "prisma generate",
"clean": "rimraf node_modules .next dist && pnpm i",
"dev": "trap 'docker-compose down; exit 0' SIGINT; docker-compose up -d && pnpm run watch",
"watch": "concurrently \"prisma generate\" \"next dev\" \"pnpm run storybook\"",
"lint": "eslint ./ --ext .ts,.tsx",
"build": "next build",
"start": "next start",
"typecheck": "tsc --noEmit",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"engines": {
"node": "20.x"
},
"dependencies": {
"@auth/prisma-adapter": "1.4.0",
"@next-auth/prisma-adapter": "1.0.7",
"@prisma/client": "5.10.2",
"@radix-ui/react-accordion": "1.1.2",
"@radix-ui/react-alert-dialog": "1.0.5",
"@radix-ui/react-aspect-ratio": "1.0.3",
"@radix-ui/react-avatar": "1.0.4",
"@radix-ui/react-checkbox": "1.0.4",
"@radix-ui/react-dialog": "1.0.5",
"@radix-ui/react-dropdown-menu": "2.0.6",
"@radix-ui/react-hover-card": "1.0.7",
"@radix-ui/react-label": "2.0.2",
"@radix-ui/react-navigation-menu": "1.1.4",
"@radix-ui/react-popover": "1.0.7",
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-scroll-area": "1.0.5",
"@radix-ui/react-select": "2.0.0",
"@radix-ui/react-separator": "1.0.3",
"@radix-ui/react-slider": "1.1.2",
"@radix-ui/react-slot": "1.0.2",
"@radix-ui/react-switch": "1.0.3",
"@radix-ui/react-tabs": "1.0.4",
"@radix-ui/react-tooltip": "1.0.7",
"@react-email/components": "0.0.14",
"@react-email/render": "0.0.12",
"@tanstack/react-table": "8.12.0",
"class-variance-authority": "0.7.0",
"clsx": "2.1.0",
"cmdk": "0.2.1",
"concurrently": "8.2.2",
"date-fns": "3.3.1",
"deepmerge": "4.3.1",
"embla-carousel-react": "8.0.0-rc23",
"jotai": "2.6.5",
"lucide-react": "0.335.0",
"next": "14.1.0",
"next-auth": "4.24.6",
"next-themes": "0.2.1",
"nodemailer": "6.9.9",
"qs": "6.11.2",
"react": "18.2.0",
"react-day-picker": "8.10.0",
"react-dom": "18.2.0",
"react-email": "2.0.0",
"react-hook-form": "7.50.1",
"react-resizable-panels": "2.0.9",
"react-use": "17.5.0",
"sonner": "1.4.0",
"swr": "2.2.5",
"tailwind-merge": "2.2.1",
"use-debounce": "10.0.0",
"vaul": "0.9.0"
},
"devDependencies": {
"@storybook/addon-essentials": "7.6.17",
"@storybook/addon-interactions": "7.6.17",
"@storybook/addon-links": "7.6.17",
"@storybook/addon-onboarding": "1.0.11",
"@storybook/addon-styling-webpack": "0.0.6",
"@storybook/blocks": "7.6.17",
"@storybook/nextjs": "7.6.17",
"@storybook/react": "7.6.17",
"@storybook/test": "7.6.17",
"@types/node": "20.11.19",
"@types/nodemailer": "6.4.14",
"@types/qs": "6.9.11",
"@types/react": "18.2.57",
"@types/react-dom": "18.2.19",
"@typescript-eslint/eslint-plugin": "7.0.2",
"@typescript-eslint/parser": "7.0.2",
"autoprefixer": "10.4.17",
"eslint": "8.56.0",
"eslint-config-next": "14.1.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-storybook": "0.8.0",
"postcss": "8.4.35",
"prettier": "3.2.5",
"prettier-plugin-tailwindcss": "0.5.11",
"prisma": "5.10.2",
"rimraf": "5.0.5",
"storybook": "7.6.17",
"tailwindcss": "3.4.1",
"tailwindcss-animate": "1.0.7",
"tsconfig-paths-webpack-plugin": "4.1.0",
"typescript": "5.3.3"
}
}