-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 3.56 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "soulhub-contracts",
"version": "0.2.1-alpha.1",
"description": "SoulHub Contracts",
"homepage": "https://github.com/desoul-labs/soulhub-contracts#readme",
"bugs": {
"url": "https://github.com/desoul-labs/soulhub-contracts/issues"
},
"repository": {
"type": "git",
"url": "git+git@github.com:desoul-labs/soulhub-contracts.git"
},
"author": "Austin Zhu",
"scripts": {
"compile": "NODE_ENV=development hardhat compile",
"compile:upgradeable": "NODE_ENV=development UPGRADEABLE=1 hardhat compile",
"compile:modularized": "NODE_ENV=development MODULARIZED=1 hardhat compile",
"deploy:chapel": "hardhat run scripts/deploy.ts --network chapel",
"deploy:goerli": "hardhat run scripts/deploy.ts --network goerli",
"deploy:hardhat": "hardhat run scripts/deploy.ts --network hardhat",
"deploy:mainnet": "hardhat run scripts/deploy.ts --network mainnet",
"deploy:mumbai": "hardhat run scripts/deploy.ts --network mumbai",
"deploy:optimism-goerli": "hardhat run scripts/deploy.ts --network optimismGoerli",
"deploy:polygon": "hardhat run scripts/deploy.ts --network polygon",
"deploy:sepolia": "hardhat run scripts/deploy.ts --network sepolia",
"doc": "NODE_ENV=development hardhat dodoc",
"lint-staged": "lint-staged --allow-empty",
"lint:js": "eslint --ext .ts,.js .",
"lint:sol": "solhint -f table contracts/**/*.sol",
"node": "NODE_ENV=development hardhat node",
"prepare": "husky install",
"release": "standard-version",
"test": "NODE_ENV=development hardhat test",
"test:modularized": "NODE_ENV=development hardhat test test/modularContract.test.ts",
"test:coverage": "pnpm run compile && pnpm run compile:modularized && NODE_ENV=development hardhat coverage --testfiles 'test/*.ts'",
"typechain": "NODE_ENV=development hardhat typechain"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"pnpm exec eslint . --fix",
"pnpm exec prettier --write ."
],
"*.sol": [
"pnpm exec solhint --fix contracts/**/*.sol",
"pnpm exec prettier --write contracts/**/*.sol"
]
},
"dependencies": {
"@openzeppelin/contracts": "4.8.2",
"@openzeppelin/contracts-upgradeable": "4.8.2"
},
"devDependencies": {
"@commitlint/cli": "17.5.0",
"@commitlint/config-conventional": "17.4.4",
"@commitlint/types": "^17.4.4",
"@nomicfoundation/hardhat-chai-matchers": "1.0.6",
"@nomicfoundation/hardhat-network-helpers": "1.0.8",
"@nomicfoundation/hardhat-toolbox": "2.0.2",
"@nomiclabs/hardhat-ethers": "2.2.2",
"@nomiclabs/hardhat-etherscan": "3.1.7",
"@nomiclabs/hardhat-solhint": "3.0.0",
"@openzeppelin/hardhat-upgrades": "1.22.1",
"@primitivefi/hardhat-dodoc": "0.2.3",
"@tenderly/hardhat-tenderly": "1.6.1",
"@typechain/hardhat": "6.1.5",
"@types/node": "18.15.10",
"@types/prettier": "2.7.2",
"@typescript-eslint/eslint-plugin": "5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"eslint": "8.36.0",
"eslint-config-prettier": "8.8.0",
"eslint-config-standard-with-typescript": "34.0.1",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-n": "15.6.1",
"eslint-plugin-promise": "6.1.1",
"ethers": "5.7.2",
"hardhat": "2.13.0",
"hardhat-gas-reporter": "1.0.9",
"husky": "8.0.3",
"lint-staged": "13.2.0",
"merkletreejs": "^0.3.9",
"prettier": "2.8.7",
"prettier-plugin-solidity": "1.1.3",
"solhint": "3.4.1",
"solhint-plugin-prettier": "0.0.5",
"solidity-coverage": "0.8.2",
"standard-version": "9.5.0",
"ts-node": "10.9.1",
"typescript": "5.0.2"
}
}