forked from smartcontractkit/chainlink-functions-demo-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.2 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": "chainlink-functions",
"version": "0.2.0",
"private": true,
"scripts": {
"dev": "hardhat compile && next dev",
"build": "hardhat compile && next build",
"start": "next start",
"lint": "next lint",
"test": "jest"
},
"dependencies": {
"@chainlink/contracts": "^0.7.1",
"@chainlink/functions-toolkit": "^0.2.4",
"@headlessui/react": "^1.7.13",
"@heroicons/react": "^2.0.16",
"@openzeppelin/contracts": "^4.8.3",
"@openzeppelin/contracts-upgradeable": "^4.8.3",
"@types/react-gtm-module": "^2.0.1",
"axios": "^1.3.4",
"dotenv": "^16.0.3",
"eth-crypto": "^2.6.0",
"ethers": "^5.5.1",
"is-http-url": "^2.0.0",
"jest": "^29.5.0",
"next": "13.2.3",
"ora": "^6.3.1",
"prompt-sync": "^4.2.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-gtm-module": "^2.0.11",
"readline-promise": "^1.0.5",
"ts-node": "^10.9.1",
"vm2": "^3.9.16",
"wagmi": "^0.12.0"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@ethersproject/abi": "^5.7.0",
"@ethersproject/bytes": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomicfoundation/hardhat-toolbox": "^2.0.2",
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@openzeppelin/hardhat-upgrades": "^1.22.1",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.2",
"@types/node": "^18.14.6",
"@types/react": "^18.0.28",
"@types/react-dom": "18.0.11",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"autoprefixer": "^10.4.13",
"classnames": "^2.3.2",
"eslint": "8.35.0",
"eslint-config-next": "13.2.3",
"eslint-config-prettier": "^8.7.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"hardhat": "^2.13.0",
"hardhat-gas-reporter": "^1.0.8",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"solidity-coverage": "^0.8.1",
"tailwindcss": "^3.2.7",
"typechain": "^8.1.1",
"typescript": "4.9.5"
}
}