-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathpackage.json
72 lines (72 loc) · 2.44 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
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": "yearn-devdocs",
"version": "0.4.3",
"license": "MIT",
"scripts": {
"docusaurus": "docusaurus",
"get-branch-name": "git rev-parse --abbrev-ref HEAD > .branch-name",
"start": "yarn get-branch-name && BRANCH_NAME=$(cat .branch-name) IS_DEV=true docusaurus start",
"build": "docusaurus build",
"swizzle": "docusaurus swizzle",
"deploy": "docusaurus deploy",
"clear": "docusaurus clear",
"serve": "docusaurus serve",
"test": "npx ava",
"write-translations": "docusaurus write-translations",
"write-heading-ids": "docusaurus write-heading-ids",
"make-sol-doc": "solidity-docgen --templates=templates --helpers=helpers/solidityHelpers.js -i ../yearn-vaults/contracts/ -o docs/v2/smart-contracts",
"make-vyper-doc": "vydoc -i ../yearn-vaults/contracts/ -o docs/v2/smart-contracts -t ./templates/contract.ejs",
"vydoc": "npx vydoc -i ../yearn-vaults-v3/contracts/ -o ./templates/temp -t ./templates/contract.ejs -c $(which vyper)",
"v3-docs": "node natspec/scripts/natspec-generate.mjs",
"runAddressCheck": "ts-node scripts/runAddressChecks.ts"
},
"dependencies": {
"@docusaurus/core": "3.5.2",
"@docusaurus/preset-classic": "3.5.2",
"@docusaurus/theme-mermaid": "3.5.2",
"@mdx-js/react": "^3.0.1",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-tabs": "^1.1.1",
"@radix-ui/react-tooltip": "^1.1.4",
"clsx": "1.1.1",
"dotenv": "^16.4.5",
"hast-util-is-element": "1.1.0",
"lucide-react": "^0.465.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"recharts": "^2.14.1",
"rehype-katex": "7",
"remark-math": "6",
"solc": "^0.8.17",
"solidity-docgen": "^0.5.11",
"viem": "^2.21.4"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@docusaurus/module-type-aliases": "3.5.2",
"@openzeppelin/contracts": "^4.8.0",
"@tsconfig/docusaurus": "1.0.2",
"@types/react": "18.3.1",
"@types/react-helmet": "6.1.1",
"@types/react-router-dom": "5.1.7",
"ava": "3.15.0",
"glob": "7.1.6",
"glob-promise": "4.1.0",
"ts-node": "9.1.1",
"typescript": "5.4.5",
"vydoc": "git+https://github.com/rossgalloway/vydoc.git"
}
}