-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.15 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.15 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
{
"name": "smart-contracts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "hardhat test",
"compile": "hardhat compile",
"deploy": "hardhat run scripts/deploy.ts",
"coverage": "hardhat coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RedCodeChilizPeppers/smart-contracts.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/RedCodeChilizPeppers/smart-contracts/issues"
},
"homepage": "https://github.com/RedCodeChilizPeppers/smart-contracts#readme",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^6.0.0",
"@nomicfoundation/hardhat-toolbox-viem": "^4.0.0",
"@openzeppelin/contracts": "^5.3.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^10.0.0",
"chai": "^4.3.0",
"dotenv": "^17.2.0",
"hardhat": "^2.25.0",
"mocha": "^10.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"viem": "^2.0.0"
},
"dependencies": {
"@uniswap/v2-core": "^1.0.1",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"@uniswap/v2-sdk": "^4.15.2"
}
}