-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
91 lines (91 loc) · 2.66 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "aier",
"version": "0.0.1",
"private": true,
"license": "MIT",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"test": "echo \"Error: no test specified\" && exit 1",
"stripe:listen": "stripe listen --forward-to=localhost:3000/api/webhooks --project-name=aier",
"scrape": "tsx scripts/scrape.ts",
"embed:t": "tsx scripts/embed_tweets.ts",
"prepare": "husky install",
"lint-staged": "lint-staged"
},
"hooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write"
]
},
"dependencies": {
"@headlessui/react": "^1.7.13",
"@heroicons/react": "^2.0.16",
"@hookform/resolvers": "^3.0.0",
"@stripe/stripe-js": "^1.48.0",
"@supabase/auth-helpers-nextjs": "^0.5.4",
"@supabase/auth-helpers-react": "^0.3.1",
"@supabase/auth-ui-react": "^0.3.3",
"@supabase/auth-ui-shared": "^0.1.2",
"@tabler/icons-react": "^2.10.0",
"@tanstack/react-query": "^4.28.0",
"@tanstack/react-query-devtools": "^4.28.0",
"@tremor/react": "^2.7.0",
"@vercel/analytics": "^1.1.3",
"@vercel/og": "^0.4.0",
"cheerio": "^1.0.0-rc.12",
"classnames": "^2.3.2",
"daisyui": "^2.51.4",
"dayjs": "^1.11.7",
"encoding": "^0.1.13",
"endent": "^2.1.0",
"eventsource-parser": "^0.1.0",
"immer": "^9.0.21",
"next": "^13.2.3",
"react": "^18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.5",
"react-hot-toast": "^2.4.0",
"react-hotkeys-hook": "^4.4.1",
"react-intersection-observer": "^9.4.3",
"react-markdown": "^8.0.6",
"react-merge-refs": "^2.0.1",
"react-tweet": "^2.0.0",
"react-virtualized-auto-sizer": "^1.0.7",
"react-window": "^1.8.8",
"remark-gfm": "^3.0.1",
"server-only": "^0.0.1",
"stripe": "^11.13.0",
"swr": "^2.0.4",
"yup": "^1.0.2"
},
"devDependencies": {
"@hookform/devtools": "^4.3.1",
"@next/env": "^13.2.4",
"@supabase/supabase-js": "^2.39.0",
"@tailwindcss/typography": "^0.5.9",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/node": "^18.14.4",
"@types/react": "^18.0.28",
"@types/react-copy-to-clipboard": "^5.0.4",
"@types/react-virtualized-auto-sizer": "^1.0.1",
"@types/react-window": "^1.8.5",
"autoprefixer": "^10.4.13",
"axios": "^1.3.4",
"gpt-3-encoder": "^1.1.4",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"openai": "^3.2.1",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"prettier-plugin-tailwindcss": "^0.2.7",
"tailwindcss": "^3.2.7",
"tsx": "^3.12.5",
"typescript": "^4.9.5"
}
}