-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.43 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.43 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
{
"name": "divvydime",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 4000",
"build": "prisma generate && next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write \"src/**/*.tsx\"",
"postinstall": "prisma generate"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@hookform/resolvers": "^3.3.4",
"@nextui-org/react": "^2.2.9",
"@prisma/client": "^5.11.0",
"dayjs": "^1.11.13",
"embla-carousel-react": "^8.5.2",
"eslint-config-prettier": "^9.1.0",
"framer-motion": "^10.17.9",
"lucide-react": "^0.368.0",
"nanoid": "^5.0.6",
"next": "14.0.4",
"next-themes": "^0.2.1",
"openai": "^4.83.0",
"prettier": "^3.1.1",
"prisma": "^5.11.0",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.51.2",
"react-hot-toast": "^2.5.1",
"react-icons": "^5.0.1",
"react-intersection-observer": "^9.15.1",
"tailwind-variants": "^0.2.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.0.4",
"husky": "^8.0.3",
"postcss": "^8",
"tailwindcss": "^3.3.0",
"ts-node": "^10.9.2",
"typescript": "^5"
}
}