-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.33 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
{
"name": "@litentry/contracts",
"description": "Litentry Dynamic Assertion Contracts",
"license": "MIT",
"author": "Litentry Dev Team",
"scripts": {
"clean": "npx hardhat clean",
"compile": "hardhat compile",
"deploy-contract": "./scripts/run_deploy.sh",
"format": "prettier --write --plugin=prettier-plugin-solidity 'contracts/**/*.sol' && prettier --write .",
"check-format": "prettier --check --plugin=prettier-plugin-solidity 'contracts/**/*.sol' && prettier --check .",
"test": "npx hardhat test",
"test-integration": "cd vc-di-tests/integration-tests && pnpm run test assertion_contracts.test.ts"
},
"devDependencies": {
"@litentry/chaindata": "^0.1.1",
"@nomicfoundation/hardhat-ethers": "^3.0.6",
"@nomicfoundation/hardhat-network-helpers": "^1.0.11",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@openzeppelin/contracts": "^4.9.6",
"@polkadot/api": "^12.2.3",
"@polkadot/util": "^13.0.2",
"@types/chai-as-promised": "^7.1.8",
"@types/ws": "^8.5.12",
"chai-as-promised": "^8.0.0",
"ethers": "^6.13.1",
"hardhat": "^2.22.6",
"prettier": "^3.3.3",
"prettier-plugin-solidity": "^1.3.1",
"ws": "^8.18.0"
},
"packageManager": "[email protected]"
}