-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
103 lines (103 loc) · 2.63 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
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "dcacrypto",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"find:unused": "next-unused",
"test": "jest",
"test:ci": "jest --ci",
"db:studio": "prisma studio --browser none",
"postinstall": "prisma generate"
},
"dependencies": {
"@ai-sdk/openai": "^0.0.55",
"@coingecko/cryptoformat": "^0.5.4",
"@fingerprintjs/fingerprintjs": "^3.3.6",
"@headlessui/react": "^1.4.0",
"@heroicons/react": "^1.0.3",
"@next-auth/upstash-redis-adapter": "^3.0.1",
"@prisma/client": "^5.19.1",
"@sentry/nextjs": "8.27.0",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.9",
"@tremor/react": "^1.8.0",
"@upstash/redis": "^1.13.1",
"@vercel/edge-config": "^0.1.1",
"ai": "^3.3.26",
"axios": "^0.21.1",
"cookies-next": "^2.1.1",
"cors": "^2.8.5",
"dayjs": "^1.10.6",
"dotenv": "^8.2.0",
"fingerprintjs2": "^2.1.4",
"gray-matter": "^4.0.3",
"just-detect-adblock": "^1.1.0",
"loops": "^3.3.0",
"micro": "^9.4.1",
"next": "14.2.8",
"next-auth": "^4.24.7",
"next-plausible": "^3.12.2",
"next-seo": "5.15.0",
"next-themes": "^0.0.15",
"nextjs-progressbar": "^0.0.16",
"nodemailer": "^6.7.8",
"posthog-js": "^1.161.2",
"posthog-node": "^4.2.0",
"query-string": "^7.0.0",
"react": "next",
"react-countdown": "^2.3.2",
"react-dom": "next",
"react-input-autosize": "^3.0.0",
"react-loading": "^2.0.3",
"react-markdown": "^6.0.2",
"react-payment-logos": "^1.1.0",
"react-query": "3.34.7",
"react-responsive": "^8.2.0",
"react-select": "^4.3.1",
"recharts": "^2.1.0",
"sharp": "^0.31.3",
"store": "^2.0.12",
"stripe": "^10.8.0",
"twitter-lite": "^1.1.0",
"typescript": "^5.5.4",
"url": "^0.11.0",
"usehooks-ts": "^2.9.1",
"zod": "^3.23.8",
"zustand": "^4.3.2"
},
"devDependencies": {
"@types/react": "18.3.5",
"autoprefixer": "^10.2.5",
"babel-jest": "^27.4.6",
"eslint": "8.6.0",
"eslint-config-next": "^14.2.7",
"frontmatter-markdown-loader": "^3.6.3",
"jest": "^27.4.7",
"jest-mock-extended": "^3.0.1",
"mockdate": "^3.0.5",
"next-unused": "^0.0.6",
"postcss": "^8.2.10",
"prettier": "^2.2.1",
"prisma": "^5.19.1",
"tailwindcss": "^3.2.6"
},
"next-unused": {
"alias": {},
"include": [
"pages",
"components",
"hooks",
"illustrations",
"queries",
"scripts",
"server",
"public"
],
"exclude": [],
"entrypoints": []
}
}