-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.97 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
{
"name": "kizinoniwa.com",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -p 9000",
"erd": "prisma generate",
"lint": "next lint",
"lint:fix": "eslint '**/*.{js,ts,tsx}' --fix",
"start:dev": "bun format&&bun run dev",
"seed": "tsx ./prisma/seed.ts",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"format": "dprint fmt && eslint '**/*.{js,ts,tsx}' --fix",
"format:check": "dprint check",
"knip": "knip",
"knip:fix": "knip --fix"
},
"dependencies": {
"@emailjs/browser": "^4.4.1",
"@hookform/resolvers": "^3.9.1",
"@prisma/client": "^6.0.1",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-toast": "^1.2.2",
"@types/formidable": "^3.4.5",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"dprint": "^0.48.0",
"formidable": "^3.5.2",
"github-markdown-css": "^5.8.0",
"knip": "^5.37.2",
"lucide-react": "^0.383.0",
"next": "14.2.15",
"next-auth": "^4.24.10",
"next-remove-imports": "^1.0.12",
"nodemailer": "^6.9.16",
"pica": "^9.0.1",
"react": "^18.3.1",
"react-avatar": "^5.0.3",
"react-avatar-editor": "^13.0.2",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.2",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.3.0",
"react-markdown": "^9.0.1",
"react-modal": "^3.16.1",
"react-select": "^5.9.0",
"react-slider": "^2.0.6",
"rehype-katex": "^7.0.1",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"sass": "^1.81.0",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.19.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/nodemailer": "^6.4.17",
"@types/pica": "^9.0.4",
"@types/react": "^18.3.12",
"@types/react-avatar-editor": "^13.0.3",
"@types/react-dom": "^18.3.1",
"@types/react-modal": "^3.16.3",
"@types/react-slider": "^1.3.6",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"eslint-config-next": "15.0.3",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-storybook": "^0.11.0",
"eslint-plugin-unused-imports": "^4.0.0",
"postcss": "^8.4.49",
"prisma": "^6.0.1",
"storybook": "^8.4.5",
"tailwindcss": "^3.4.16",
"typescript": "5.7"
},
"description": "This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).",
"main": "index.js",
"keywords": [],
"author": "",
"license": "ISC",
"prisma": {
"seed": "tsx ./prisma/seed.ts"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}