generated from citydaoproject/contracts-template
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
102 lines (102 loc) · 2.83 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
100
101
102
{
"author": "CityDAO",
"name": "@citydao/parcel-contracts",
"description": "",
"license": "UNLICENSED",
"version": "0.0.6",
"homepage": "https://github.com/citydaoproject/parcel-contracts/wiki/Home",
"repository": {
"type": "git",
"url": "https://github.com/citydaoproject/parcel-contracts"
},
"bugs": {
"url": "https://github.com/citydaoproject/parcel-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 && tsc",
"build:watch": "tsc --watch",
"rebuild": "npm run clean && npm run build",
"test": "hardhat test",
"posttest": "npm run lint",
"lint": "solhint 'contracts/**/*.sol' && eslint",
"pretty": "pretty-quick",
"release": "standard-version",
"prepublishOnly": "npm run rebuild && npm run release",
"ci-prepare": "cp example.secrets.json .secrets.json"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"pre-push": "npm run lint"
}
},
"dependencies": {
"@gnus.ai/contracts-upgradeable-diamond": "4.5.0",
"@openzeppelin/contracts": "4.5.0",
"ethers": "5.6.4",
"luxon": "2.3.2",
"merkletreejs": "0.2.31"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "2.0.5",
"@nomiclabs/hardhat-etherscan": "3.0.3",
"@nomiclabs/hardhat-waffle": "2.0.3",
"@typechain/ethers-v5": "9.0.0",
"@typechain/hardhat": "4.0.0",
"@types/chai": "4.3.1",
"@types/chai-as-promised": "7.1.5",
"@types/mocha": "9.1.0",
"@types/node": "16.11.27",
"@typescript-eslint/eslint-plugin": "5.19.0",
"@typescript-eslint/parser": "5.19.0",
"chai": "4.3.6",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.13.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.0.0",
"ethereum-waffle": "3.4.4",
"hardhat": "2.9.3",
"hardhat-etherscan": "1.0.1",
"husky": "7.0.4",
"mocha": "9.2.2",
"prettier": "2.6.2",
"prettier-plugin-solidity": "1.0.0-beta.19",
"pretty-quick": "3.1.3",
"solhint": "3.3.7",
"solhint-plugin-prettier": "0.0.5",
"standard-version": "9.3.2",
"ts-mocha": "9.0.2",
"ts-node": "10.7.0",
"tsutils": "3.21.0",
"typechain": "7.0.1",
"typescript": "4.6.3"
},
"engines": {
"npm": ">=7.20",
"node": ">=16.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"standard-version": {
"issueUrlFormat": "https://github.com/citydaoproject/parcel-contracts/issues/{{id}}",
"issuePrefixes": [
"#"
],
"scripts": {
"postchangelog": "npm run pretty"
}
}
}