-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.69 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.69 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
85
86
87
88
89
90
91
92
93
94
{
"name": "mealhub",
"private": true,
"version": "1.0.0",
"scripts": {
"clean": "rimraf \"{node_modules,.next,.cache}\"",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"seed": "tsx scripts/seed.ts",
"prepare": "husky install"
},
"dependencies": {
"@headlessui/react": "^1.7.18",
"@hookform/resolvers": "^3.3.4",
"@stripe/react-stripe-js": "^2.5.0",
"@stripe/stripe-js": "^3.0.6",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10",
"@typeform/embed-react": "^3.1.0",
"axios": "^1.6.7",
"bcryptjs": "^2.4.3",
"classnames": "^2.5.1",
"dayjs": "^1.11.10",
"firebase": "^10.8.1",
"formidable": "^3.5.1",
"framer-motion": "^11.0.8",
"jose": "^5.2.2",
"jotai": "^2.6.5",
"js-cookie": "^3.0.5",
"little-state-machine": "^4.8.1",
"lodash": "^4.17.21",
"mongoose": "^8.2.0",
"next": "^14.1.0",
"next-pwa": "^5.6.0",
"next-seo": "^6.5.0",
"next-sitemap": "^4.2.3",
"next-themes": "^0.2.1",
"nodemailer": "^6.9.11",
"overlayscrollbars": "^2.5.0",
"overlayscrollbars-react": "^0.5.4",
"pluralize": "^8.0.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-avatar": "^5.0.3",
"react-confetti": "^6.1.0",
"react-content-loader": "^7.0.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-facebook-pixel": "^1.0.4",
"react-gtm-module": "^2.0.11",
"react-hook-form": "^7.51.0",
"react-hot-toast": "^2.4.1",
"react-phone-input-2": "^2.15.1",
"react-places-autocomplete": "^7.3.0",
"react-query": "^3.39.3",
"react-share": "^5.1.0",
"react-use": "^17.5.0",
"sharp": "^0.33.2",
"stripe": "^14.18.0",
"swiper": "^11.0.7",
"tiny-invariant": "^1.3.3",
"yup": "^1.3.3"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/formidable": "^3.4.5",
"@types/js-cookie": "^3.0.6",
"@types/lodash": "^4.14.202",
"@types/node": "^20.11.20",
"@types/nodemailer": "^6.4.14",
"@types/pluralize": "^0.0.33",
"@types/react": "^18.2.61",
"@types/react-copy-to-clipboard": "^5.0.7",
"@types/react-dom": "^18.2.19",
"@types/react-gtm-module": "^2.0.3",
"@types/react-places-autocomplete": "^7.2.14",
"autoprefixer": "^10.4.17",
"dotenv": "^17.4.1",
"eslint": "^8.57.0",
"eslint-config-next": "^14.1.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"rimraf": "^5.0.5",
"tailwindcss": "^3.4.1",
"tsx": "^4.7.1",
"typescript": "^5.3.3"
}
}