-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.06 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.06 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
{
"name": "riskmapper",
"version": "0.1.0",
"private": true,
"engines": {
"node": "22"
},
"scripts": {
"dev": "next dev --turbopack",
"build": "next build --webpack",
"start": "next start",
"lint": "eslint",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"db:up": "docker compose -p riskmapper -f docker-compose.dev.yml up -d",
"db:down": "docker compose -p riskmapper -f docker-compose.dev.yml down",
"db:logs": "docker compose -f docker-compose.dev.yml logs -f mongo",
"db:reset": "docker compose -p riskmapper -f docker-compose.dev.yml down -v",
"cleanup:orphan-updates": "node scripts/cleanup-orphan-updates.mjs"
},
"dependencies": {
"@activistchecklist/umami-extra-privacy": "https://github.com/ActivistChecklist/umami-extra-privacy.git#7669154d772ecbf3410c1243e8014ac8a0e74c5e",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tooltip": "^1.2.8",
"@react-pdf/renderer": "^4.5.1",
"@tiptap/extension-link": "^3.22.5",
"@tiptap/pm": "^3.22.5",
"@tiptap/react": "^3.22.5",
"@tiptap/starter-kit": "^3.22.5",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"fractional-indexing": "^3.2.0",
"libsodium-wrappers": "^0.8.4",
"lucide-react": "^1.8.0",
"mongodb": "^7.2.0",
"next": "16.2.4",
"rate-limiter-flexible": "^11.0.1",
"react": "19.2.4",
"react-dom": "19.2.4",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"tiptap-markdown": "^0.9.0",
"yjs": "^13.6.30"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^9",
"eslint-config-next": "16.2.4",
"jsdom": "^29.0.2",
"tailwindcss": "^4",
"typescript": "^5",
"vitest": "^4.1.4"
}
}