-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
122 lines (122 loc) Β· 3.59 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "saas",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postinstall": "prisma generate",
"prisma:migrate:dev": "prisma migrate dev",
"vercel-build": "prisma generate && prisma migrate deploy && prisma db seed && next build",
"test:watch": "jest --watch",
"test:build": "jest",
"analyze": "cross-env ANALYZE=true next build",
"prepare": "husky install"
},
"prisma": {
"seed": "yarn tsx src/seed.ts"
},
"engines": {
"node": ">=18.17.0"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@heroicons/react": "^2.0.16",
"@next-auth/prisma-adapter": "^1.0.5",
"@postlight/parser": "^2.2.3",
"@premieroctet/next-admin": "^5.0.0",
"@prisma/client": "^4.11.0",
"@radix-ui/react-dialog": "^1.0.3",
"@radix-ui/react-navigation-menu": "^1.1.2",
"@radix-ui/react-popover": "1.0.5",
"@radix-ui/react-tabs": "^1.0.3",
"@radix-ui/react-tooltip": "^1.0.5",
"@react-icons/all-files": "^4.1.0",
"@resvg/resvg-js": "^2.4.1",
"@sendinblue/client": "^3.3.1",
"@sentry/nextjs": "^7.51.2",
"@sentry/node": "^7.51.2",
"@tailwindcss/line-clamp": "^0.4.4",
"@tremor/react": "^3.4.1",
"@types/jsonwebtoken": "^9.0.2",
"@vercel/og": "^0.4.0",
"ai": "^2.2.13",
"axios": "^1.3.4",
"class-variance-authority": "^0.4.0",
"contentlayer": "^0.3.2",
"date-fns": "^2.29.3",
"feed": "^4.2.2",
"framer-motion": "^10.7.0",
"husky": "^8.0.3",
"jsonwebtoken": "^9.0.1",
"lodash": "^4.17.21",
"lru-cache": "^10.0.2",
"metascraper": "^5.36.0",
"metascraper-description": "^5.33.7",
"metascraper-image": "^5.33.7",
"metascraper-logo": "^5.36.0",
"metascraper-logo-favicon": "^5.36.0",
"metascraper-media-provider": "^5.33.9",
"metascraper-title": "^5.33.7",
"metascraper-twitter": "^5.33.7",
"mjml": "^4.13.0",
"mjml-react": "^2.0.8",
"next": "^14.0.1",
"next-auth": "^4.20.1",
"next-connect": "^1.0.0-next.3",
"next-contentlayer": "^0.3.2",
"next-superjson-plugin": "^0.5.8",
"nodemailer": "^6.9.1",
"openai": "^4.10.0",
"plaiceholder": "^2.5.0",
"prisma": "^4.11.0",
"prisma-json-schema-generator": "^5.1.1",
"react": "^18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-colorful": "^5.6.1",
"react-cookie": "^6.1.1",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.7",
"react-hot-toast": "^2.4.0",
"react-query": "^3.39.3",
"react-tweet": "^3.1.1",
"recharts": "^2.9.3",
"remark": "^14.0.3",
"remark-html": "^15.0.2",
"satori": "^0.10.2",
"sharp": "^0.31.3",
"superjson": "^1.12.2",
"tsx": "^4.6.2",
"url-slug": "^3.0.4"
},
"devDependencies": {
"@next/bundle-analyzer": "^13.4.16",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.9",
"@types/jest": "^29.5.2",
"@types/lodash": "^4.14.194",
"@types/mjml": "^4.7.0",
"@types/mjml-react": "^2.0.6",
"@types/node": "^18",
"@types/nodemailer": "^6.4.7",
"@types/react": "^18",
"@types/react-beautiful-dnd": "^13.1.4",
"@types/react-dom": "^18",
"autoprefixer": "^10.4.14",
"clsx": "^1.2.1",
"cross-env": "^7.0.3",
"eslint": "8.35.0",
"eslint-config-next": "^14.0.1",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"postcss": "^8.4.21",
"tailwindcss": "^3.2.7",
"tailwindcss-animate": "^1.0.5",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5"
}
}