-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.09 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
{
"name": "dream",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"format": "prettier --write .",
"prepare": "simple-git-hooks"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,md}": [
"prettier --write"
]
},
"dependencies": {
"@chakra-ui/icons": "^2.0.19",
"@chakra-ui/react": "^2.5.1",
"@emailjs/browser": "^3.11.0",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@fontsource/arimo": "^5.0.3",
"@fontsource/open-sans": "^5.0.3",
"@fontsource/poppins": "^5.0.3",
"@fontsource/raleway": "^5.0.3",
"@fontsource/roboto": "^5.0.3",
"@google-cloud/storage": "^6.11.0",
"@splinetool/react-spline": "^2.2.6",
"@splinetool/runtime": "^0.9.381",
"@stripe/react-stripe-js": "^2.1.1",
"@stripe/stripe-js": "^1.54.1",
"@tanstack/react-query": "^4.32.0",
"@tanstack/react-query-devtools": "^4.32.0",
"@vercel/node": "^2.9.10",
"axios": "^1.3.4",
"dotenv": "^16.3.1",
"emailjs": "^4.0.2",
"emailjs-com": "^3.2.0",
"feeder-react-feedback": "^0.0.6",
"firebase": "^9.22.2",
"firebase-admin": "^11.9.0",
"framer-motion": "^10.0.1",
"infinite-react-carousel": "^1.2.11",
"micro": "^10.0.1",
"mixpanel-browser": "^2.47.0",
"nodemailer": "^6.9.4",
"openai": "^4.20.0",
"react": "^18.2.0",
"react-awesome-reveal": "^4.2.4",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-icons": "^4.10.1",
"react-lazy-load-image-component": "^1.6.0",
"react-responsive-carousel": "^3.2.23",
"react-router-dom": "^6.14.0",
"sharp": "^0.32.5",
"sitemap": "^7.1.1",
"stripe": "^12.9.0",
"uuid": "^9.0.0",
"vercel": "^28.16.8"
},
"devDependencies": {
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@vitejs/plugin-react": "^3.1.0",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"simple-git-hooks": "^2.11.1",
"vite": "^5.0.11"
}
}