forked from smartcontractkit/documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 4.21 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
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "chainlink-docs",
"version": "1.0.1",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"format": "prettier --write .",
"linkcheckWrapper": "npx ts-node -r tsconfig-paths/register src/scripts/link-check/linkcheckWrapper.ts",
"linkcheck-internal": "npx ts-node -r tsconfig-paths/register src/scripts/link-check/linkcheck.ts",
"linkcheck-external": "npx ts-node -r tsconfig-paths/register src/scripts/link-check/linkcheck.ts --mode=external",
"compare-chains-metadata": "tsc scripts/chains-metadata.ts --resolveJsonModule && node scripts/chains-metadata.js ",
"update-algolia-index": "tsc scripts/update-algolia-index.ts --resolveJsonModule && node scripts/update-algolia-index.js ",
"sync-chainlink-automation-config": "npx ts-node -r tsconfig-paths/register src/scripts/chainlink-automation/networks-config.ts",
"find-nonchecksummed-addresses": "npx ts-node -r tsconfig-paths/register src/scripts/helper/find-nonchecksummed-addresses.ts",
"sol:compile": "npx hardhat compile",
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint --fix . ",
"lint-ts": "eslint --ext ts .",
"lint-ts:fix": "eslint --ext ts .",
"lint-solc": "solhint --max-warnings 266 'public/samples/**/*.sol'",
"prepare": "husky install",
"test": "jest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@11ty/eleventy-fetch": "^4.0.0",
"@algoveraai/search": "^0.0.82",
"@astro-community/astro-embed-youtube": "^0.4.1",
"@astrojs/mdx": "^1.1.3",
"@astrojs/partytown": "^2.0.2",
"@astrojs/preact": "^3.0.1",
"@astrojs/prism": "^3.0.0",
"@astrojs/react": "^3.0.4",
"@astrojs/sitemap": "^3.0.3",
"@chainlink/components": "^0.4.5",
"@chainlink/contracts": "^0.8.0",
"@chainlink/contracts-ccip": "^0.7.6",
"@chainlink/design-system": "^0.1.50",
"@chainlink/solana-sdk": "^0.2.2",
"@metamask/detect-provider": "^2.0.0",
"@metamask/providers": "^10.2.1",
"@nanostores/preact": "^0.5.0",
"@nanostores/react": "^0.7.1",
"@openzeppelin/contracts": "^4.9.3",
"astro": "^3.4.2",
"astro-embed": "^0.6.0",
"clipboard": "^2.0.11",
"dotenv": "^16.3.1",
"ethers": "^5.7.2",
"focus-trap-react": "^10.2.3",
"github-slugger": "^2.0.0",
"lodash": "^4.17.21",
"nanostores": "^0.9.4",
"preact": "^10.18.1",
"react-hotkeys": "^2.0.0",
"react-instantsearch-hooks-web": "^6.47.3",
"rehype-autolink-headings": "^7.0.0",
"rehype-slug": "^6.0.0",
"rehype-wrap-all": "^1.1.0",
"remark-directive": "^3.0.0"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^2.0.2",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@project-serum/anchor": "^0.26.0",
"@types/node": "^20.8.10",
"@types/react": "^18.2.33",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^8.10.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"hardhat": "^2.18.3",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"prettier": "^2.8.8",
"prettier-plugin-astro": "^0.8.1",
"prettier-plugin-solidity": "^1.1.3",
"solhint": "^3.6.2",
"solhint-plugin-chainlink-solidity": "github:smartcontractkit/chainlink-solhint-rules",
"solhint-plugin-prettier": "^0.0.5",
"ts-jest": "^29.1.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.2.2"
},
"lint-staged": {
"*.{css,md,mdx,yml,yaml,astro}": "prettier --write",
"*.{js,ts,json}": [
"prettier --write",
"eslint"
],
"*.sol": [
"prettier --write",
"solhint"
]
},
"main": "index.js",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/smartcontractkit/documentation.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/smartcontractkit/documentation/issues"
},
"homepage": "https://github.com/smartcontractkit/documentation#readme"
}