-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.68 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
{
"name": "sky-bridge",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postbuild": "next-sitemap",
"prepare": "husky",
"format": "prettier --write ."
},
"dependencies": {
"@ai-sdk/openai": "^0.0.38",
"@emotion/css": "^11.13.0",
"@emotion/react": "^11.13.0",
"@emotion/styled": "^11.13.0",
"@mui/material": "^5.16.4",
"@nanostores/react": "ai/react",
"@next/third-parties": "^14.2.5",
"@tanstack/react-query": "^5.51.9",
"@types/lodash": "^4.17.7",
"@types/next-pwa": "^5.6.9",
"@types/qs": "^6.9.15",
"ai": "^3.2.34",
"axios": "^1.7.2",
"framer-motion": "^11.3.8",
"html-react-parser": "^5.1.12",
"lodash": "^4.17.21",
"marked": "^13.0.2",
"next": "14.2.5",
"next-pwa": "^5.6.0",
"next-seo": "^6.5.0",
"next-sitemap": "^4.2.3",
"qs": "^6.12.3",
"react": "^18",
"react-confetti": "^6.1.0",
"react-dom": "^18",
"react-draggable": "^4.4.6",
"react-hook-form": "^7.52.1",
"react-hot-toast": "^2.4.1",
"react-use": "^17.5.1",
"swiper": "^11.1.5",
"typewriter-effect": "^2.21.0",
"zod": "^3.23.8",
"zustand": "^4.5.4"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18.3.3",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.5",
"husky": "^9.1.1",
"lint-staged": "^15.2.7",
"postcss": "^8",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.1",
"typescript": "^5"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write",
"git add"
]
}
}