-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.8 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
{
"name": "reportly",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"doc": "docs",
"lib": "lib",
"test": "tests"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watch",
"migrate": "node scripts/run-migration.js",
"migrate:orgs": "node scripts/run-migration-orgs.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@supabase/ssr": "^0.6.1",
"@supabase/supabase-js": "^2.49.4",
"@tiptap/extension-code-block-lowlight": "^2.11.7",
"@tiptap/extension-image": "^2.11.7",
"@tiptap/extension-placeholder": "^2.11.7",
"@tiptap/pm": "^2.11.7",
"@tiptap/react": "^2.11.7",
"@tiptap/starter-kit": "^2.11.7",
"@types/react-mentions": "^4.4.1",
"axios": "^1.8.4",
"lowlight": "^3.3.0",
"lucide-react": "^0.487.0",
"mermaid": "^11.6.0",
"mongoose": "^8.13.2",
"next": "^15.2.4",
"openai": "^4.93.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-hot-toast": "^2.5.2",
"react-mentions": "^4.4.10",
"uuid": "^11.1.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.3",
"@tailwindcss/typography": "^0.5.16",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.14.0",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.1",
"autoprefixer": "^10.4.21",
"dotenv": "^16.4.5",
"eslint": "^9.24.0",
"eslint-config-next": "^15.2.4",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.5.3",
"tailwindcss": "^3.4.17",
"ts-jest": "^29.3.1",
"typescript": "^5.8.3"
}
}