-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.32 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 3.32 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
{
"name": "darkframe",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "next dev --webpack",
"dev:server": "tsx -r dotenv/config server.ts dotenv_config_path=.env.local",
"stripe:listen": "C:\\stripe\\stripe.exe listen --forward-to localhost:3000/api/stripe/webhook",
"stripe:trigger:checkout": "C:\\stripe\\stripe.exe trigger checkout.session.completed",
"stripe:trigger:subscription-update": "C:\\stripe\\stripe.exe trigger customer.subscription.updated",
"stripe:trigger:subscription-cancel": "C:\\stripe\\stripe.exe trigger customer.subscription.deleted",
"build": "next build --webpack",
"start": "set NODE_ENV=production&& tsx -r dotenv/config server.ts dotenv_config_path=.env.local",
"lint": "eslint .",
"init-map": "node -r dotenv/config scripts/runInitMap.js dotenv_config_path=.env.local",
"db:setup": "tsx scripts/dbSetup.ts",
"map:rebuild": "tsx scripts/rebuildMap.ts",
"archive:completed": "node dev/scripts/archive_completed.js --keep 30",
"validate-referrals": "tsx -r dotenv/config scripts/validate-referrals-cron.ts dotenv_config_path=.env.local",
"test": "vitest",
"test:watch": "vitest --watch",
"test:ci": "vitest run",
"prepare": "git config core.hooksPath .githooks && git config commit.template .gitmessage",
"postinstall": "node scripts/ensure-hooks.js"
},
"dependencies": {
"@sentry/nextjs": "^10.21.0",
"@tiptap/extension-character-count": "^3.7.2",
"@tiptap/extension-color": "^3.7.2",
"@tiptap/extension-font-family": "^3.7.2",
"@tiptap/extension-text-align": "^3.7.2",
"@tiptap/extension-text-style": "^3.7.2",
"@tiptap/extension-underline": "^3.7.2",
"@tiptap/react": "^3.7.2",
"@tiptap/starter-kit": "^3.7.2",
"bad-words": "^4.0.0",
"bcrypt": "^6.0.0",
"canvas-confetti": "^1.9.3",
"dompurify": "^3.3.0",
"drizzle-orm": "^0.45.2",
"ioredis": "^6.0.0",
"jose": "^6.1.0",
"jsonwebtoken": "^9.0.2",
"linkify-react": "^4.3.2",
"linkifyjs": "^4.3.2",
"lucide-react": "^1.46.0",
"mongodb": "^6.10.0",
"next": "^16.3.5",
"pg": "^8.20.0",
"react": "^19.3.0",
"react-dom": "^19.3.0",
"react-hot-toast": "^2.6.0",
"react-joyride": "^3.2.0",
"react-mentions": "^4.4.10",
"recharts": "^3.3.0",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"sonner": "^2.0.7",
"stripe": "^22.6.2",
"zod": "^4.1.12"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^7.0.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/bcrypt": "^6.0.0",
"@types/canvas-confetti": "^1.9.0",
"@types/dompurify": "^3.0.5",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^20",
"@types/react": "^19.3.0",
"@types/react-dom": "^19.3.0",
"@types/react-mentions": "^4.4.1",
"@vitejs/plugin-react": "^6.1.1",
"concurrently": "^10.0.5",
"dotenv": "^17.2.3",
"drizzle-kit": "^0.31.10",
"eslint": "^9.39.5",
"eslint-config-next": "^16.3.5",
"jsdom": "^29.1.1",
"minimist": "^1.2.8",
"mongodb-memory-server": "^10.2.3",
"postcss": "^8",
"supabase": "^2.117.0",
"tailwindcss": "^4.1.0",
"tsx": "^4.20.6",
"typescript": "^5",
"vitest": "^4.0.2"
}
}