-
-
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) · 2.9 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.9 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": "culture-bridge-website",
"version": "1.0.0",
"description": "Culture Bridge - Heritage Preservation Network Website",
"main": "index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"lint:prod": "APP_ENV=production next lint",
"format:check": "prettier --check .",
"format": "prettier --write .",
"typecheck": "tsc --noEmit",
"metrics:export": "APP_ENV=production ts-node scripts/export-metrics.ts",
"bench:signing": "node scripts/signing-benchmark.ts",
"enrich:nostr": "node scripts/enrich-nostr-handles.js"
},
"dependencies": {
"@tiptap/extension-character-count": "^3.6.2",
"@tiptap/extension-color": "^3.6.2",
"@tiptap/extension-highlight": "^3.6.2",
"@tiptap/extension-link": "^3.6.2",
"@tiptap/extension-placeholder": "^3.6.2",
"@tiptap/extension-strike": "^3.6.2",
"@tiptap/extension-subscript": "^3.6.2",
"@tiptap/extension-superscript": "^3.6.2",
"@tiptap/extension-table": "^3.6.2",
"@tiptap/extension-table-cell": "^3.6.2",
"@tiptap/extension-table-header": "^3.6.2",
"@tiptap/extension-table-row": "^3.6.2",
"@tiptap/extension-task-item": "^3.6.2",
"@tiptap/extension-task-list": "^3.6.2",
"@tiptap/extension-text-align": "^3.6.2",
"@tiptap/extension-text-style": "^3.6.2",
"@tiptap/extension-underline": "^3.6.2",
"@tiptap/extension-youtube": "^3.6.2",
"@tiptap/react": "^3.6.2",
"@tiptap/starter-kit": "^3.6.2",
"@vercel/analytics": "^1.5.0",
"blossom-client-sdk": "^4.1.0",
"clsx": "^2.1.1",
"dotenv": "^17.2.1",
"framer-motion": "^10.0.0",
"idb": "^8.0.3",
"lucide-react": "^0.294.0",
"next": "15.4.10",
"node-fetch": "^3.3.2",
"nostr-tools": "^2.17.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-easy-crop": "^5.5.3",
"react-intersection-observer": "^9.5.3",
"react-markdown": "^10.1.0",
"redis": "^5.8.2",
"remark-gfm": "^4.0.1",
"tiptap-markdown": "^0.9.0",
"zustand": "^5.0.8"
},
"devDependencies": {
"@next/bundle-analyzer": "^15.4.6",
"@tailwindcss/typography": "^0.5.19",
"@types/node": "^20.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"autoprefixer": "^10.0.0",
"eslint": "^8.57.0",
"eslint-config-next": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"postcss": "^8.0.0",
"prettier": "^3.3.0",
"tailwindcss": "^3.0.0",
"ts-node": "^10.9.2",
"typescript": "~5.5.4"
},
"keywords": [
"culture",
"heritage",
"preservation",
"nostr",
"decentralized",
"indigenous",
"traditions"
],
"author": "Culture Bridge Team",
"license": "MIT"
}