-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·72 lines (72 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·72 lines (72 loc) · 1.75 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
{
"name": "ethers-tutorial",
"version": "0.0.0",
"private": true,
"author": "liuzi6612",
"homepage": "https://ethersv6.netlify.app",
"repository": {
"type": "git",
"url": "git+https://github.com/liuzi6612/ethers-tutorial.git"
},
"scripts": {
"docusaurus": "docusaurus",
"start": "docusaurus start",
"build": "docusaurus build",
"swizzle": "docusaurus swizzle",
"deploy": "docusaurus deploy",
"clear": "docusaurus clear",
"serve": "docusaurus serve",
"write-translations": "docusaurus write-translations",
"write-heading-ids": "docusaurus write-heading-ids",
"typecheck": "tsc"
},
"dependencies": {
"@ant-design/icons": "^6.0.0",
"@docusaurus/core": "3.8.1",
"@docusaurus/preset-classic": "3.8.1",
"@docusaurus/theme-live-codeblock": "^3.8.1",
"@mdx-js/react": "^3.0.0",
"antd": "^5.25.2",
"clsx": "^2.0.0",
"ethers": "^6.14.1",
"prism-react-renderer": "^2.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "3.8.1",
"@docusaurus/tsconfig": "3.8.1",
"@docusaurus/types": "3.8.1",
"@types/react": "^19.1.8",
"dotenv": "^16.5.0",
"typescript": "~5.6.2"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 3 chrome version",
"last 3 firefox version",
"last 5 safari version"
]
},
"description": "Ethers.js Beginner's Tutorial",
"directories": {
"doc": "docs"
},
"keywords": [
"Ethers.js",
"Ethereum",
"Blockchain",
"Web3",
"JavaScript",
"TypeScript"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/liuzi6612/ethers-tutorial/issues"
}
}