forked from mirror-xyz/splits
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 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
68
69
70
71
72
{
"name": "@ourz/our-contracts",
"description": "## These contracts enable **creators**, **builders**, and **collaborators of all kind** to receive royalties for their collective work, forever",
"version": "1.0.6",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"author": "ourz-network",
"license": "GPL-3.0-or-later",
"scripts": {
"pretty": "prettier --write contracts/**/*.sol",
"lint": "solhint ./contracts/*.sol",
"prepare": "husky install",
"compile": "hardhat clean && hardhat compile",
"test": "hardhat test",
"build": "yarn compile && yarn package",
"package": "rm -rf ./dist && tsc && cp typechain/*.d.ts dist/typechain && cp -R addresses dist && cp -R artifacts/contracts dist/artifacts && cp -R contracts dist",
"prepublish": "yarn pretty && yarn lint && yarn build"
},
"dependencies": {
"@nomiclabs/hardhat-solhint": "^2.0.0",
"@nomiclabs/hardhat-ethers": "^2.0.4",
"@nomiclabs/hardhat-etherscan": "^3.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.2",
"@openzeppelin/contracts": "4.4.2",
"@openzeppelin/contracts-upgradeable": "4.4.2",
"@openzeppelin/hardhat-upgrades": "^1.13.0",
"@tenderly/hardhat-tenderly": "^1.0.13",
"@typechain/ethers-v5": "^9.0.0",
"@typechain/hardhat": "^4.0.0",
"@types/chai": "^4.3.0",
"@types/chai-as-promised": "^7.1.4",
"@types/ethereumjs-util": "^6.1.0",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.12",
"chai": "^4.3.5",
"chai-as-promised": "^7.1.1",
"commander": "^8.3.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.3",
"hardhat": "^2.8.3",
"husky": "^7.0.4",
"lint-staged": "^12.3.1",
"prettier": "^2.5.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solhint": "^3.3.6",
"solhint-plugin-prettier": "^0.0.5",
"ts-generator": "^0.1.1",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.12.0",
"typechain": "^7.0.0",
"typechain-target-ethers": "^1.0.4",
"typescript": "^4.5.5"
},
"devDependencies": {
"mocha": "^9.2.0"
},
"lint-staged": {
"*.{ts,js,css,md,sol}": "prettier --write",
"*.sol": "solhint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ourz-network/our-contracts.git"
},
"bugs": {
"url": "https://github.com/ourz-network/our-contracts/issues"
},
"homepage": "https://github.com/ourz-network/our-contracts#readme"
}