forked from gnosisguild/zodiac
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.23 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 3.23 KB
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
92
93
94
95
96
{
"name": "@gnosis.pm/zodiac",
"version": "3.0.0",
"description": "Zodiac is a composable design philosophy and collection of standards for building DAO ecosystem tooling.",
"author": "Auryn Macmillan <auryn.macmillan@gnosis.io>",
"license": "LGPL-3.0+",
"main": "./dist/src/factory/index.js",
"typings": "./dist/src/factory/index.d.ts",
"files": [
"package.json",
"LICENSE",
"README.md",
"dist",
"contracts"
],
"scripts": {
"build": "hardhat compile",
"build:factory": "tsc -p tsconfig.json",
"clean": "rm -rf build typechain-types",
"clean:factory": "rm -rf dist abi-typechain-types",
"deploy": "hardhat singleton-deployment --network",
"test:js": "hardhat test ./src/factory/__tests__/index.spec.ts",
"test": "hardhat test && yarn test:js",
"coverage": "hardhat coverage",
"lint": "yarn lint:sol && yarn lint:ts",
"lint:sol": "solhint ./contracts/**/*.sol",
"lint:ts": "eslint --max-warnings 0 .",
"fmt:sol": "prettier ./contracts/**/*.sol -w",
"format": "yarn format:sol && yarn format:ts",
"format:sol": "prettier ./contracts/**/*.sol -w",
"format:ts": "prettier ./src/**/*.ts ./test/**/*.ts ./*.ts -w",
"generate:types": "typechain --target ethers-v5 --out-dir abi-typechain-types './src/abi/*.json'",
"prepare": "yarn generate:types && yarn build",
"prebuild:factory": "yarn generate:types",
"prerelease": "yarn clean && yarn build && yarn clean:factory && yarn build:factory",
"release": "yarn publish --access public",
"verify": "yarn hardhat verify --network"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/gnosis/zodiac.git"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.2.0",
"@nomiclabs/hardhat-etherscan": "^3.1.1",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@typechain/ethers-v5": "^10.1.1",
"@typechain/hardhat": "^6.1.4",
"@types/chai": "^4.3.3",
"@types/ethereumjs-abi": "^0.6.3",
"@types/mocha": "^10.0.0",
"@types/node": "^18.8.5",
"@types/yargs": "^17.0.13",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"chai": "^4.3.6",
"debug": "^4.3.4",
"dotenv": "^16.0.3",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-no-only-tests": "^3.0.0",
"eslint-plugin-prettier": "^4.2.1",
"ethereum-waffle": "^3.4.4",
"ethereumjs-abi": "^0.6.8",
"ethereumjs-util": "^7.1.5",
"hardhat": "^2.12.0",
"hardhat-change-network": "^0.0.7",
"hardhat-deploy": "^0.11.18",
"husky": "^8.0.1",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-beta.24",
"rimraf": "^3.0.2",
"solc": "^0.8.17",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.8.2",
"ts-node": "^10.9.1",
"typechain": "^8.1.1",
"typescript": "^4.8.4",
"yargs": "^17.6.0"
},
"dependencies": {
"@gnosis.pm/mock-contract": "^4.0.0",
"@gnosis.pm/safe-contracts": "1.3.0",
"@openzeppelin/contracts": "^4.3.2",
"@openzeppelin/contracts-upgradeable": "^4.2.0",
"ethers": "^5.7.1"
},
"peerDependencies": {
"ethers": "^5.7.1"
}
}