-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.14 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.14 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
{
"name": "recipe-website",
"version": "0.1.0",
"type": "module",
"private": true,
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"format:write": "npx prettier --write '**/*.{ts,tsx,js,mjs,css,json}'",
"format:check": "npx prettier --check '**/*.{ts,tsx,js,mjs,css,json}'",
"lint": "npx eslint '**/*.{ts,tsx,js,mjs}'",
"postinstall": "prisma generate"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.515.0",
"@aws-sdk/s3-presigned-post": "^3.515.0",
"@aws-sdk/s3-request-presigner": "^3.515.0",
"@dnd-kit/core": "^6.0.8",
"@dnd-kit/sortable": "^8.0.0",
"@formkit/auto-animate": "^0.8.2",
"@headlessui/react": "^1.7.3",
"@heroicons/react": "^2.0.11",
"@hookform/error-message": "^2.0.1",
"@hookform/resolvers": "^3.3.4",
"@next-auth/prisma-adapter": "^1.0.5",
"@prisma/client": "^5.6.0",
"@t3-oss/env-nextjs": "^0.9.2",
"@tanstack/react-query": "^4.29.23",
"@tanstack/react-query-devtools": "^4.29.23",
"@trpc/client": "^10.45.1",
"@trpc/next": "^10.45.1",
"@trpc/react-query": "^10.45.1",
"@trpc/server": "^10.45.1",
"class-variance-authority": "^0.7.0",
"framer-motion": "^11.1.7",
"next": "^14.1.2",
"next-auth": "^4.24.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.36.0",
"react-icons": "^5.2.0",
"server-only": "^0.0.1",
"superjson": "^2.2.1",
"uuid": "^9.0.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@faker-js/faker": "^7.3.0",
"@types/eslint": "^8.56.2",
"@types/node": "^20.12.7",
"@types/react": "^18.2.64",
"@types/react-dom": "^18.2.20",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.56.0",
"eslint-config-next": "^14.1.0",
"postcss": "^8.4.14",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.12",
"prisma": "^5.6.0",
"tailwindcss": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.1.6"
}
}