-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.75 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
92
93
94
95
96
97
98
99
{
"author": "The Paypr Company",
"name": "@paypr/gnossis-chain-contracts",
"description": "",
"license": "GPL-3.0",
"version": "1.0.5",
"homepage": "https://paypr.money/",
"repository": {
"type": "git",
"url": "https://github.com/paypr/gnossis-chain-contracts"
},
"bugs": {
"url": "https://github.com/paypr/gnossis-chain-contracts/issues"
},
"files": [
"artifacts",
"contracts",
"dist",
"src",
"CHANGELOG.md",
"README.md"
],
"scripts": {
"clean": "rm -rf build && rm -rf dist && rm -rf out && rm -rf types && rm -rf artifacts && rm -rf cache",
"compile:contracts": "hardhat compile",
"build": "npm run compile:contracts && npm run pretty && tsc && npm run copy-declarations",
"build:ci": "npm run compile:contracts && tsc",
"build:watch": "tsc --watch",
"copy-declarations": "cp -R types dist",
"rebuild": "npm run clean && npm run build",
"test": "jest",
"posttest": "npm run lint",
"lint": "solhint 'contracts/**/*.sol' && eslint",
"pretty": "pretty-quick",
"release": "standard-version",
"prepublishOnly": "npm run rebuild && npm run release"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"pre-push": "npm run lint"
}
},
"dependencies": {
"@openzeppelin/contracts": "4.9.6",
"@paypr/ethereum-contracts": "1.4.0",
"ethers": "5.7.2"
},
"devDependencies": {
"@ethereum-waffle/jest": "3.3.2",
"@nomiclabs/hardhat-ethers": "2.2.3",
"@nomiclabs/hardhat-waffle": "2.0.6",
"@poanet/solidity-flattener": "3.0.9",
"@typechain/ethers-v5": "10.2.1",
"@typechain/hardhat": "6.1.6",
"@types/jest": "29.5.12",
"@types/node": "18.19.42",
"@typescript-eslint/eslint-plugin": "5.61.0",
"@typescript-eslint/parser": "5.61.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.57.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "4.2.1",
"ethereum-waffle": "3.4.4",
"hardhat": "2.13.1",
"husky": "8.0.3",
"jest": "29.7.0",
"jest-junit": "15.0.0",
"prettier": "2.8.8",
"prettier-plugin-solidity": "1.0.0-beta.24",
"pretty-quick": "3.1.3",
"solhint": "3.4.1",
"solhint-plugin-prettier": "0.0.5",
"standard-version": "9.5.0",
"ts-jest": "29.1.5",
"ts-node": "10.9.2",
"tsutils": "3.21.0",
"typechain": "8.2.0",
"typescript": "4.9.5"
},
"engines": {
"npm": ">=7.20",
"node": ">=16.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"standard-version": {
"issueUrlFormat": "https://github.com/paypr/gnossis-chain-contracts/issues/{{id}}",
"issuePrefixes": [
"#"
],
"scripts": {
"postchangelog": "npm run pretty"
}
}
}