-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.45 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.45 KB
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
{
"name": "penstack-blog",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:push": "drizzle-kit push",
"db:migrate": "drizzle-kit migrate",
"db:gen": "drizzle-kit generate",
"db:create": "node -r dotenv/config scripts/create-db.mjs",
"db:seeds": "tsx scripts/seed.ts",
"db:init": "node -r dotenv/config scripts/init-db.mjs"
},
"dependencies": {
"@auth/core": "^0.37.2",
"@auth/drizzle-adapter": "^1.7.2",
"@chakra-ui/icons": "^2.2.4",
"@chakra-ui/next-js": "^2.2.0",
"@chakra-ui/react": "^2.8.2",
"@chakra-ui/styled-system": "2",
"@emotion/react": "^11.13.0",
"@emotion/styled": "^11.13.0",
"@green-auth/snowflake-unique-id": "^1.0.1",
"@react-email/components": "^0.0.29",
"@tanstack/react-query": "^5.51.18",
"@tanstack/react-table": "^8.20.6",
"@tiptap/core": "2.4.0",
"@tiptap/extension-blockquote": "2.4.0",
"@tiptap/extension-character-count": "2.4.0",
"@tiptap/extension-code-block": "2.4.0",
"@tiptap/extension-code-block-lowlight": "2.4.0",
"@tiptap/extension-heading": "2.4.0",
"@tiptap/extension-highlight": "2.4.0",
"@tiptap/extension-image": "^2.4.0",
"@tiptap/extension-link": "2.4.0",
"@tiptap/extension-placeholder": "2.4.0",
"@tiptap/extension-table": "2.4.0",
"@tiptap/extension-table-cell": "2.4.0",
"@tiptap/extension-table-header": "2.4.0",
"@tiptap/extension-table-row": "2.4.0",
"@tiptap/extension-text-align": "2.4.0",
"@tiptap/extension-typography": "2.4.0",
"@tiptap/pm": "2.4.0",
"@tiptap/react": "^2.4.0",
"@tiptap/starter-kit": "^2.4.0",
"@tiptap/suggestion": "2.4.0",
"axios": "^1.7.7",
"bcryptjs": "^2.4.3",
"cloudinary": "^2.5.1",
"date-fns": "^3.6.0",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.32.1",
"formik": "^2.4.6",
"framer-motion": "^11.3.13",
"html-entities": "^2.5.2",
"html-react-parser": "^5.2.0",
"just-is-empty": "^3.4.1",
"lowlight": "^3.1.0",
"marked": "^15.0.7",
"mixpanel-browser": "^2.60.0",
"mysql2": "^3.10.3",
"next": "14.2.5",
"next-auth": "^4.24.10",
"nuqs": "^2.3.2",
"react": "^18",
"react-dom": "^18",
"react-dropzone": "^14.3.1",
"react-icons": "^5.2.1",
"react-resizable": "^3.0.5",
"react-share": "^5.2.0",
"react-time-picker": "^7.0.0",
"react-twitter-embed": "^4.0.4",
"react-window": "^1.8.10",
"recharts": "^2.13.2",
"resend": "^4.0.1",
"server-only": "^0.0.1",
"slugify": "^1.6.6",
"svix": "^1.60.0",
"swiper": "^11.1.15",
"tippy.js": "^6.3.7",
"turndown": "^7.2.0",
"ua-parser-js": "2.0.0-rc.1",
"uuid": "^11.0.3",
"zustand": "^5.0.3"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/lodash": "^4.17.7",
"@types/mixpanel-browser": "^2.51.0",
"@types/node": "^20",
"@types/node-cron": "^3.0.11",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-resizable": "^3.0.8",
"@types/react-slick": "^0.23.13",
"@types/react-window": "^1.8.8",
"@types/turndown": "^5.0.5",
"@types/ua-parser-js": "^0.7.39",
"chakra-next-cli": "^1.0.3",
"drizzle-kit": "^0.23.0",
"eslint": "^8",
"eslint-config-next": "14.2.5",
"lodash": "^4.17.21",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5"
}
}