-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.68 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.68 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
{
"name": "ele",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "next build",
"db:generate": "drizzle-kit generate",
"db:push": "drizzle-kit push",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio",
"dev": "next dev",
"dev:wss": "cross-env PORT=3001 tsx watch src/server/websocket/socket.ts --tsconfig tsconfig.server.json ",
"lint": "next lint",
"start": "next start",
"stripe:listen": "stripe listen --forward-to localhost:3000/api/stripe-credits",
"stripe:sub-listen": "stripe listen --forward-to localhost:3000/api/stripe-subscription",
"stripe:add-cash": "stripe listen --forward-to localhost:3000/api/stripe-add-cash"
},
"dependencies": {
"@auth/drizzle-adapter": "1.7.2",
"@libsql/client": "0.14.0",
"@nextui-org/react": "2.4.8",
"@reduxjs/toolkit": "2.3.0",
"@stripe/react-stripe-js": "^3.5.1",
"@stripe/stripe-js": "2.4.0",
"@t3-oss/env-nextjs": "0.11.1",
"@tanstack/react-query": "5.59.15",
"@tanstack/react-query-devtools": "5.59.15",
"@trpc/client": "11.0.0-next-beta.316",
"@trpc/next": "11.0.0-next-beta.316",
"@trpc/react-query": "11.0.0-next-beta.316",
"@trpc/server": "11.0.0-next-beta.316",
"@vercel/analytics": "1.2.2",
"axios": "1.7.7",
"bcrypt": "5.1.1",
"cross-env": "^7.0.3",
"date-fns": "^4.1.0",
"drizzle-orm": "0.38.3",
"framer-motion": "11.0.3",
"handlebars": "4.7.8",
"jsonwebtoken": "9.0.2",
"moment": "2.30.1",
"next": "14.2.15",
"next-auth": "4.24.11",
"nodemailer": "6.9.15",
"react": "18.3.0",
"react-dom": "18.3.0",
"react-icons": "5.3.0",
"react-redux": "9.1.2",
"react-toastify": "10.0.6",
"redux-thunk": "3.1.0",
"server-only": "0.0.1",
"stripe": "14.15.0",
"superjson": "2.2.1",
"tsx": "^4.19.2",
"validator": "13.12.0",
"ws": "^8.18.0",
"zod": "3.23.8"
},
"devDependencies": {
"@types/bcrypt": "5.0.2",
"@types/eslint": "9.6.1",
"@types/jsonwebtoken": "9.0.7",
"@types/node": "22.7.8",
"@types/nodemailer": "6.4.16",
"@types/react": "18.3.11",
"@types/react-dom": "18.3.1",
"@types/validator": "13.12.2",
"@typescript-eslint/eslint-plugin": "8.11.0",
"@typescript-eslint/parser": "8.11.0",
"autoprefixer": "10.4.14",
"drizzle-kit": "0.30.1",
"eslint": "8.57.0",
"eslint-config-next": "14.2.15",
"eslint-plugin-drizzle": "^0.2.3",
"postcss": "8.4.47",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "0.6.8",
"tailwindcss": "3.4.14",
"typescript": "5.6.3"
},
"ct3aMetadata": {
"initVersion": "7.26.0"
},
"packageManager": "npm@10.2.3"
}