-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.91 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
{
"name": "certified-app",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=20.12.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"typecheck": "tsc --noEmit",
"typecheck:test": "tsc --noEmit -p tsconfig.test.json",
"styleguide:generate": "node scripts/generate-styleguide.mjs"
},
"dependencies": {
"@atproto/api": "^0.13.20",
"@atproto/jwk-jose": "^0.1.11",
"@atproto/oauth-client-node": "^0.3.17",
"@tabler/icons-react": "3.44.0",
"@tiptap/extension-link": "^3.23.4",
"@tiptap/extension-placeholder": "^3.23.4",
"@tiptap/pm": "^3.23.4",
"@tiptap/react": "^3.23.4",
"@tiptap/starter-kit": "^3.23.4",
"@types/d3-hierarchy": "3.1.7",
"@upstash/redis": "^1.36.3",
"@vercel/analytics": "^2.0.1",
"d3-hierarchy": "3.1.2",
"leaflet": "^1.9.4",
"lucide-react": "^0.468.0",
"next": "16.2.6",
"next-themes": "^0.4.6",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-force-graph-2d": "^1.29.1",
"react-leaflet": "^5.0.0",
"resend": "^6.10.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@playwright/test": "1.60.0",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/leaflet": "1.9.21",
"@types/node": "22.19.19",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitest/coverage-v8": "4.1.6",
"eslint": "^9",
"eslint-config-next": "16.2.6",
"jsdom": "29.1.1",
"playwright": "1.60.0",
"postcss": "^8.5.10",
"tailwindcss": "^3.4.1",
"typescript": "^5",
"vitest": "4.1.6"
},
"overrides": {
"postcss": "^8.5.10"
}
}