forked from smartcontractkit/documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.94 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
{
"name": "chainlink-docs",
"version": "1.0.0",
"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 'public/samples/**/*.sol'",
"prepare": "husky install",
"test": "jest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@11ty/eleventy-fetch": "^4.0.0",
"@algolia/client-search": "^4.19.1",
"@astro-community/astro-embed-youtube": "^0.2.2",
"@astrojs/partytown": "^1.2.3",
"@astrojs/prism": "^2.1.2",
"@chainlink/design-system": "^0.1.50",
"@metamask/detect-provider": "^2.0.0",
"@metamask/providers": "^10.2.1",
"@nanostores/preact": "^0.4.1",
"astro-embed": "^0.2.1",
"clipboard": "^2.0.11",
"ethers": "^5.7.2",
"focus-trap-react": "^10.2.1",
"github-slugger": "^2.0.0",
"nanostores": "^0.8.1",
"preact": "^10.16.0",
"react-instantsearch-hooks-web": "^6.47.3"
},
"devDependencies": {
"@astrojs/mdx": "^0.19.7",
"@astrojs/preact": "^2.2.1",
"@astrojs/react": "^2.2.1",
"@astrojs/sitemap": "^1.4.0",
"@chainlink/contracts": "^0.6.1",
"@chainlink/contracts-ccip": "^0.7.6",
"@chainlink/solana-sdk": "^0.2.2",
"@nomicfoundation/hardhat-toolbox": "^2.0.2",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@openzeppelin/contracts": "^4.9.3",
"@project-serum/anchor": "^0.26.0",
"@types/node": "^20.4.7",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"astro": "^2.10.1",
"dotenv": "^16.3.1",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.10.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"hardhat": "^2.17.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"lodash": "^4.17.21",
"prettier": "^2.8.8",
"prettier-plugin-astro": "^0.8.1",
"prettier-plugin-solidity": "^1.1.3",
"rehype-autolink-headings": "^6.1.1",
"rehype-slug": "^5.1.0",
"remark-directive": "^2.0.1",
"solhint": "^3.4.1",
"solhint-plugin-prettier": "^0.0.5",
"ts-jest": "^29.1.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.6"
},
"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://[email protected]/smartcontractkit/documentation.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/smartcontractkit/documentation/issues"
},
"homepage": "https://github.com/smartcontractkit/documentation#readme"
}