-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.01 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 3.01 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "git-paid",
"version": "0.1.0",
"private": true,
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"prepare": "husky install",
"compile": "hardhat compile",
"test": "npm run test:unit",
"test:unit": "hardhat test test/unit/*.spec.js",
"functions-simulate-javascript": "node scripts/simulateFunctionsJavaScript.js",
"functions-gen-keys": "node scripts/generateKeypair.js",
"lint": "npm run lint:contracts && npm run format:check && next lint",
"lint:fix": "solhint 'contracts/**/*.sol' --fix",
"lint:contracts": "solhint 'contracts/*.sol'",
"lint:contracts:fix": "solhint 'contracts/**/*.sol' --fix",
"format:check": "prettier --check .",
"format:fix": "prettier --write ."
},
"dependencies": {
"@chainlink/contracts": "0.5.1",
"@headlessui/react": "^1.7.13",
"@heroicons/react": "^2.0.17",
"@motionone/utils": "^10.15.1",
"@next/bundle-analyzer": "^13.2.4",
"@radix-ui/react-progress": "^1.0.2",
"@radix-ui/react-select": "^1.2.1",
"@radix-ui/react-slot": "^1.0.2",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.3",
"@vercel/analytics": "^0.1.11",
"axios": "^1.3.4",
"classnames": "^2.3.2",
"dotenv": "^16.1.3",
"eslint": "8.37.0",
"eslint-config-next": "13.2.4",
"eth-crypto": "^2.5.0",
"ethers": "5.4.0",
"framer-motion": "^10.10.0",
"ipfs-http-client": "56.0.3",
"is-http-url": "^2.0.0",
"next": "13.3.0",
"next-themes": "^0.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-intersection-observer": "^9.4.3",
"react-router-dom": "^6.11.2",
"react-spinners": "^0.13.8",
"tailwindcss-animate": "^1.0.5",
"viem": "^0.3.37",
"wagmi": "^1.0.8",
"@openzeppelin/contracts": "4.8.3",
"@openzeppelin/contracts-upgradeable": "4.8.3",
"crypto-js": "^4.1.1",
"jsrsasign": "^10.6.0",
"ora": "5.4.1",
"readline": "^1.3.0",
"vm2": "^3.9.18"
},
"devDependencies": {
"autoprefixer": "^10.4.14",
"postcss": "^8.4.21",
"tailwindcss": "^3.3.1",
"@chainlink/contracts": "0.5.1",
"@ethersproject/abi": "^5.7.0",
"@ethersproject/providers": "^5.7.1",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.3",
"@nomicfoundation/hardhat-network-helpers": "^1.0.6",
"@nomicfoundation/hardhat-toolbox": "^2.0.0",
"@nomiclabs/hardhat-ethers": "^2.2.2",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@openzeppelin/hardhat-upgrades": "^1.22.1",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.3",
"chai": "^4.3.6",
"eth-crypto": "^2.4.0",
"ethers": "^5.7.2",
"hardhat": "^2.14.0",
"hardhat-contract-sizer": "^2.6.1",
"hardhat-gas-reporter": "^1.0.9",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-beta.24",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.8.2",
"typechain": "^8.1.0"
}
}