forked from bitcointranscripts/registry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1 KB
/
package.json
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
{
"name": "registry",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"fetch-topics": "node scripts/fetchTopics.js",
"fetch-reviewers": "node scripts/fetchReviewers.js",
"submodules:update": "git submodule update --init && git submodule update --remote",
"build": "npm run submodules:update && npm run fetch-topics && npm run fetch-reviewers && next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@bitcoin-dev-project/bdp-ui": "^1.5.1",
"@uiw/react-markdown-preview": "^5.1.3",
"contentlayer2": "^0.4.6",
"date-fns": "^4.1.0",
"dotenv": "^16.4.5",
"next": "14.2.4",
"next-contentlayer2": "^0.4.6",
"react": "^18",
"react-dom": "^18",
"react-intersection-observer": "^9.13.1",
"tailwind-merge": "^2.5.2"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}