-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 3.33 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 3.33 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
{
"name": "@dexignation/contracts",
"version": "0.1.0",
"description": "DEXignation smart contracts — Polygon-native NFT name service built on the ENS reference architecture.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/DEXignation/dexignation-contracts.git"
},
"homepage": "https://dexignation.com",
"bugs": {
"url": "https://github.com/DEXignation/dexignation-contracts/issues"
},
"type": "module",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"build": "hardhat compile",
"clean": "hardhat clean",
"test": "hardhat test mocha",
"test:coverage": "hardhat coverage",
"lint": "solhint 'contracts/**/*.sol' && prettier --check '{contracts,test,ignition,scripts}/**/*.{ts,sol}'",
"lint:fix": "solhint 'contracts/**/*.sol' --fix && prettier --write '{contracts,test,ignition,scripts}/**/*.{ts,sol}'",
"format": "prettier --write '{contracts,test,ignition,scripts}/**/*.{ts,sol,json,md}'",
"deploy:local": "npm run deploy:local:all",
"deploy:local:all": "hardhat ignition deploy ignition/modules/DXDeployTrading.ts --network localhost",
"deploy:local:core": "hardhat ignition deploy ignition/modules/DXDeployLocal.ts --network localhost",
"deploy:local:trading": "hardhat ignition deploy ignition/modules/DXDeployTrading.ts --network localhost",
"deploy:local-core": "npm run deploy:local:core",
"deploy:local-trading": "npm run deploy:local:trading",
"deploy:amoy": "npm run deploy:amoy:core",
"deploy:amoy:core": "hardhat ignition deploy ignition/modules/DXDeployAmoy.ts --network amoy",
"deploy:amoy:mock": "hardhat ignition deploy ignition/modules/DXDeployAmoyMock.ts --network amoy",
"deploy:polygon": "npm run deploy:polygon:core",
"deploy:polygon:core": "hardhat ignition deploy ignition/modules/DXDeployPolygon.ts --network polygon",
"deploy:polygon:trading": "hardhat ignition deploy ignition/modules/DXDeployTradingPolygon.ts --network polygon",
"deploy:polygon-trading": "npm run deploy:polygon:trading",
"verify:amoy": "hardhat verify --network amoy",
"verify:polygon": "hardhat verify --network polygon",
"node": "hardhat node",
"size": "node scripts/check-bytecode-size.mjs"
},
"dependencies": {
"@openzeppelin/contracts": "^5.1.0"
},
"devDependencies": {
"@chainlink/contracts": "^1.3.0",
"@chainlink/local": "^0.2.3",
"@nomicfoundation/hardhat-ignition": "^3.1.6",
"@nomicfoundation/hardhat-ignition-viem": "^3.1.5",
"@nomicfoundation/hardhat-keystore": "^3.0.11",
"@nomicfoundation/hardhat-mocha": "^3.0.20",
"@nomicfoundation/hardhat-network-helpers": "^3.0.9",
"@nomicfoundation/hardhat-node-test-runner": "^3.0.16",
"@nomicfoundation/hardhat-toolbox-viem": "^5.0.6",
"@nomicfoundation/hardhat-verify": "^3.0.18",
"@nomicfoundation/hardhat-viem": "^3.0.8",
"@nomicfoundation/hardhat-viem-assertions": "^3.1.0",
"@types/chai": "^4.3.20",
"@types/chai-as-promised": "^8.0.2",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.0",
"chai": "^4.5.0",
"chai-as-promised": "^7.1.2",
"dotenv": "^16.4.7",
"hardhat": "^3.6.0",
"mocha": "^11.7.6",
"prettier": "^3.4.2",
"prettier-plugin-solidity": "^1.4.2",
"solhint": "^5.0.5",
"solhint-plugin-prettier": "^0.1.0",
"typescript": "^5.7.2",
"viem": "^2.51.2"
}
}