-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
67 lines (67 loc) · 2.4 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
61
62
63
64
65
66
67
{
"name": "dimo-web3-identity",
"version": "1.0.0",
"description": "Dimo web3 identity",
"main": "hardhat.config.ts",
"scripts": {
"build": "npx hardhat clean && npx hardhat compile && npx hardhat run scripts/abiGenerator.ts && npx hardhat run scripts/listSelectors.ts",
"test": "npx hardhat test --network localhost",
"test-parallel": "npx hardhat test --parallel ./test/NFTs/* ./test/nodes/* ./test/streamr/* ./test/*.test.ts",
"test-tableland": "npx hardhat test ./test/tableland/* --network localhost ",
"lint": "npm run lint:ts && npm run lint:sol",
"lint:ts": "npx eslint . --ext .ts",
"lint:ts:fix": "npx eslint . '**/*.ts' --fix",
"lint:sol": "npx solhint 'contracts/**/*.sol'",
"lint:sol:fix": "npx solhint 'contracts/**/*.sol' --fix --noPrompt && npx prettier --write --plugin=prettier-plugin-solidity 'contracts/**/*.sol'",
"coverage": "npm run build && npx hardhat coverage",
"gas-report": "REPORT_GAS=true npx hardhat test",
"contract-sizer": "CONTRACT_SIZER=true npm run build"
},
"keywords": [
"DIMO",
"solidity",
"web3",
"DID"
],
"author": "DIMO",
"license": "BUSL-1.1",
"engines": {
"node": ">=20"
},
"devDependencies": {
"@nomicfoundation/hardhat-network-helpers": "^1.0.11",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomiclabs/hardhat-solhint": "^4.0.0",
"@openzeppelin/hardhat-upgrades": "^3.1.0",
"@streamr/network-contracts": "^7.0.7",
"@tableland/hardhat": "^0.0.9",
"@tableland/local": "^3.0.2",
"@tableland/sdk": "^7.2.1",
"@tableland/sqlparser": "^1.4.1",
"@tenderly/hardhat-tenderly": "^1.8.0",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"erc721a-upgradeable": "^4.2.3",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"ethers": "^6.7.1",
"fast-csv": "^4.3.6",
"hardhat": "^2.22.8",
"hardhat-abi-exporter": "^2.10.1",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-tracer": "^3.1.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"prettier-plugin-solidity": "^1.1.3",
"typescript": "^5.2.2"
},
"dependencies": {
"@openzeppelin/contracts": "^4.5.0",
"@openzeppelin/contracts-upgradeable": "^4.7.3",
"@solidstate/contracts": "^0.0.48",
"@tableland/evm": "^6.0.0",
"dotenv": "^16.3.1"
}
}