-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.23 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.23 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "likehome",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watch",
"coverage": "jest --coverage"
},
"dependencies": {
"@auth/core": "^0.37.0",
"@prisma/client": "^5.21.1",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-popover": "^1.1.2",
"@radix-ui/react-slot": "^1.1.0",
"@stripe/react-stripe-js": "^2.8.1",
"@stripe/stripe-js": "^4.9.0",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"axios": "^1.7.7",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cmdk": "^1.0.0",
"date-fns": "^3.6.0",
"dompurify": "^3.2.1",
"framer-motion": "^11.12.0",
"jest-dom": "^4.0.0",
"likehome": "file:",
"lucide-react": "^0.460.0",
"motion": "^11.12.0",
"next": "^14.2.13",
"next-auth": "^5.0.0-beta.22",
"next-themes": "^0.3.0",
"react": "^18",
"react-day-picker": "^8.10.1",
"react-dom": "^18",
"react-icons": "^5.3.0",
"react-lottie-player": "^2.1.0",
"react-photo-album": "^3.0.2",
"react-scroll": "^1.9.0",
"sass": "^1.81.0",
"sharp": "^0.33.5",
"sonner": "^1.7.0",
"stripe": "^17.2.1",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7",
"ts-node": "^10.9.2",
"yet-another-react-lightbox": "^3.21.7",
"zod": "^3.23.8"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.13",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/testing-library__react": "^10.0.1",
"autoprefixer": "^10.4.20",
"daisyui": "^4.12.13",
"eslint": "^8",
"eslint-config-next": "14.2.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.47",
"prisma": "^5.21.1",
"tailwindcss": "^3.4.13",
"ts-jest": "^29.2.5",
"typescript": "^5"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"setupFilesAfterEnv": [
"<rootDir>/jest.setup.js"
]
}
}