-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.3 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.3 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
93
94
95
96
97
98
99
100
101
102
103
{
"name": "getstartedwithweb3",
"version": "1.0.0",
"description": "Modern React-powered Web3 learning platform with interactive tutorials and AI assistance",
"type": "module",
"scripts": {
"predev": "npm run sync-content",
"prebuild": "npm run sync-content && npm run ai:index && npm run ai:publish",
"sync-content": "node scripts/sync-content.mjs",
"dev": "vite",
"build": "vite build",
"postbuild": "node scripts/generate-og-images.mjs && node scripts/generate-sitemap.mjs && node scripts/prerender.mjs",
"ai:index": "node scripts/generate-ai-index.mjs",
"ai:publish": "node scripts/publish-ai-artifacts.mjs",
"ai:verify": "node scripts/verify-ai-entrypoints.mjs",
"translation:check": "node scripts/check-translation-coverage.mjs",
"mcp:web3": "node scripts/web3-mcp-server.mjs",
"mcp:dogfood": "node scripts/dogfood-web3-mcp.mjs",
"preview": "vite preview",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist",
"lint": "eslint src --ext .js,.jsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint src --ext .js,.jsx --fix",
"format": "prettier --write \"src/**/*.{js,jsx,json,css,md}\"",
"format:check": "prettier --check \"src/**/*.{js,jsx,json,css,md}\"",
"organize:rename": "node scripts/organize-files.mjs",
"organize:format": "node scripts/format-markdown.mjs",
"organize:all": "npm run organize:rename && npm run organize:format",
"test": "vitest run",
"test:watch": "vitest",
"prepare": "husky"
},
"keywords": [
"web3",
"blockchain",
"education",
"react",
"tutorial",
"cryptocurrency",
"bitcoin"
],
"author": "beihaili",
"license": "MIT",
"homepage": "https://bhbtc.xyz/",
"repository": {
"type": "git",
"url": "https://github.com/beihaili/Get-Started-with-Web3.git"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"fuse.js": "^7.3.0",
"html2canvas": "^1.4.1",
"i18next": "^26.2.0",
"i18next-browser-languagedetector": "^8.2.1",
"lucide-react": "^1.16.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-i18next": "^17.0.8",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.15.1",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.1",
"zod": "^4.4.3",
"zustand": "^5.0.13"
},
"devDependencies": {
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^20.5.3",
"@resvg/resvg-js": "^2.6.2",
"@tailwindcss/postcss": "^4.3.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@vitejs/plugin-react": "^6.0.1",
"autoprefixer": "^10.5.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^7.1.1",
"gh-pages": "^6.3.0",
"globals": "^17.6.0",
"happy-dom": "^20.9.0",
"husky": "^9.0.10",
"lint-staged": "^15.2.0",
"pangu": "^7.2.1",
"playwright": "^1.60.0",
"postcss": "^8.5.14",
"prettier": "^3.8.3",
"satori": "^0.26.0",
"tailwindcss": "^4.3.0",
"terser": "^5.47.1",
"vite": "^8.0.13",
"vitest": "^4.1.6"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"prettier --write"
],
"zh/**/*.{md,MD}": [
"node scripts/format-markdown.mjs"
]
}
}