-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.79 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
{
"private": true,
"scripts": {
"postinstall": "prisma generate",
"clean": "rimraf node_modules .next dist .react-email && pnpm install",
"compose": "docker compose -f ./docker/develop/docker-compose.yaml",
"dev": "pnpm compose up -d && pnpm watch && pnpm compose down",
"watch": "trap 'exit 0' SIGINT; concurrently \"next dev\" \"email dev --port 3002\"",
"build": "prisma migrate deploy && next build",
"format": "prettier --write \"**/*.{css,js,json,jsx,ts,tsx}\"",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit"
},
"engines": {
"node": "20.x",
"pnpm": "9.x"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@chakra-ui/icons": "2.1.1",
"@chakra-ui/next-js": "2.2.0",
"@chakra-ui/react": "2.8.2",
"@chakra-ui/styled-system": "2.9.2",
"@chakra-ui/theme-tools": "2.1.2",
"@emotion/react": "11.11.3",
"@emotion/styled": "11.11.0",
"@next-auth/prisma-adapter": "1.0.7",
"@octokit/auth-app": "6.0.3",
"@octokit/core": "5.1.0",
"@prisma/client": "5.9.1",
"@react-email/components": "0.0.14",
"@react-email/render": "0.0.12",
"@stripe/react-stripe-js": "2.5.0",
"@stripe/stripe-js": "3.0.3",
"@tanstack/react-table": "8.12.0",
"@tiptap/core": "2.2.3",
"@tiptap/pm": "2.2.3",
"@tiptap/react": "2.2.3",
"@tiptap/starter-kit": "2.2.3",
"@upstash/ratelimit": "1.0.1",
"@vercel/postgres": "0.7.2",
"ai": "2.2.35",
"date-fns": "3.3.1",
"deepmerge": "4.3.1",
"easypanel.js": "1.3.0",
"fast-deep-equal": "3.1.3",
"framer-motion": "11.0.5",
"jotai": "2.6.4",
"js-cookie": "3.0.5",
"langchain": "0.1.20",
"nanoid": "5.0.5",
"next": "14.1.0",
"next-auth": "4.24.6",
"nodemailer": "6.9.9",
"octokit": "3.1.2",
"openai": "4.28.0",
"openai-edge": "1.2.2",
"posthog-js": "1.106.0",
"posthog-node": "3.6.3",
"qs": "6.11.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-email": "2.0.0",
"react-icons": "5.0.1",
"react-use": "17.5.0",
"react-virtuoso": "4.7.0",
"sharp": "0.33.2",
"slugify": "1.6.6",
"stripe": "14.17.0",
"swr": "2.2.5",
"use-debounce": "10.0.0"
},
"devDependencies": {
"@octokit/types": "12.5.0",
"@types/js-cookie": "3.0.6",
"@types/node": "20.11.19",
"@types/nodemailer": "6.4.14",
"@types/qs": "6.9.11",
"@types/react": "18.2.56",
"@types/react-dom": "18.2.19",
"@typescript-eslint/eslint-plugin": "7.0.1",
"@typescript-eslint/parser": "7.0.1",
"concurrently": "9.1.0",
"eslint": "8.56.0",
"eslint-config-next": "14.1.0",
"eslint-config-prettier": "9.1.0",
"prettier": "3.2.5",
"prisma": "5.9.1",
"rimraf": "5.0.5",
"tsx": "4.19.2",
"typescript": "5.3.3"
}
}