-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
60 lines (60 loc) · 2.29 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
{
"name": "nuklai-contracts-v2",
"version": "1.0.0",
"license": "MIT",
"main": "index.js",
"scripts": {
"build": "hardhat compile",
"clean": "npx hardhat clean",
"contract-size": "hardhat size-contracts",
"coverage": "cross-env HARDHAT_DEPLOY_FIXTURE=true TEST=true npx hardhat coverage --testfiles \"tests/*.spec.ts\"",
"deploy": "hardhat deploy",
"deploy-contracts:fuji": "yarn hardhat --network fuji deploy --tags ProxyAdmin,FragmentNFT,DatasetNFT,DatasetManagers,DatasetVerifiers,DatasetFactory",
"lint": "sort-package-json && cross-env prettier --write . && cross-env solhint --fix 'contracts/**/*.sol'",
"lint:check": "cross-env solhint 'contracts/**/*.sol' && cross-env prettier --check .",
"pr:lint:check:contracts": "prettier --check **.sol",
"pr:lint:check:tests": "prettier --check **/tests/**.ts",
"test": "yarn build && yarn typechain && cross-env TEST=true mocha 'tests/**/*.spec.ts'",
"typechain": "yarn hardhat typechain"
},
"dependencies": {
"@openzeppelin/contracts": "^4.9.3",
"@openzeppelin/contracts-upgradeable": "^4.9.3",
"hardhat-deploy": "^0.11.34",
"hardhat-deploy-ethers": "^0.4.1"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.0",
"@nomicfoundation/hardhat-ethers": "^3.0.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@nomicfoundation/hardhat-verify": "^1.0.0",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@openzeppelin/hardhat-upgrades": "^2.2.1",
"@typechain/ethers-v6": "^0.4.0",
"@typechain/hardhat": "^8.0.0",
"@types/chai": "^4.2.0",
"@types/mocha": ">=9.1.0",
"@types/node": "^16.4.13",
"@types/uuid": "^9.0.2",
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"dotenv": "^16.3.1",
"ethers": "^6.6.4",
"hardhat": "^2.17.0",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-dependency-compiler": "^1.1.3",
"hardhat-gas-reporter": "^1.0.8",
"mocha": "^10.2.0",
"prettier": "2.8.3",
"prettier-plugin-solidity": "^1.1.3",
"solhint": "^3.6.2",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.8.1",
"sort-package-json": "^2.5.1",
"ts-node": "^10.9.1",
"typechain": "^8.2.0",
"typescript": "^5.1.6",
"uuid": "^9.0.0"
}
}