-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·73 lines (73 loc) · 2.37 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
{
"name": "genesis-collection-contracts",
"version": "1.0.0",
"main": "hardhat.config.ts",
"directories": {
"test": "test"
},
"scripts": {
"postinstall": "husky install",
"compile": "npx hardhat compile",
"deploy:hardhat": "npx hardhat run scripts/deploy.js --network hardhat",
"deploy:mainnet": "npx hardhat run scripts/deploy.js --network mainnet",
"verify:mainnet": "npx hardhat verify --constructor-args arguments.js --network mainnet",
"deploy:rinkeby": "npx hardhat run scripts/deploy.js --network rinkeby",
"verify:rinkeby": "npx hardhat verify --network rinkeby",
"test": "npx hardhat test --show-stack-traces",
"coverage": "npx hardhat coverage --network hardhat",
"lint:solhint": "npx solhint \"contracts/**/*.sol\"",
"lint:eslint": "eslint .",
"lint": "npm run lint:solhint && npm run lint:eslint"
},
"lint-staged": {
".": "npx prettier --write",
"test/**/*.js": "npx eslint --fix",
"migrations_scripts/*.js": "npx eslint --fix"
},
"author": "Igor Sobolev",
"license": "MIT",
"repository": "https://github.com/zeriontech/genesis-collection-nft",
"dependencies": {
"@openzeppelin/contracts": "4.6.0"
},
"devDependencies": {
"@babel/core": "7.17.9",
"@babel/preset-env": "7.16.11",
"@babel/register": "7.17.7",
"@codechecks/client": "0.1.12",
"@nomiclabs/hardhat-ethers": "2.0.5",
"@nomiclabs/hardhat-etherscan": "3.0.3",
"@nomiclabs/hardhat-waffle": "2.0.3",
"@types/chai": "4.3.1",
"@types/mocha": "9.1.0",
"@types/node": "17.0.25",
"@types/regenerator-runtime": "0.13.1",
"@vue/compiler-sfc": "3.2.33",
"chai": "4.3.6",
"core-js": "3.22.1",
"css-loader": "6.7.1",
"dotenv": "16.0.1",
"eslint": "8.15.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.26.0",
"ethers": "5.6.5",
"ganache-cli": "6.12.2",
"hardhat": "2.9.5",
"hardhat-docgen": "1.3.0",
"hardhat-gas-reporter": "1.0.8",
"hardhat-tracer": "1.1.0-rc.5",
"husky": "8.0.1",
"lint-staged": "12.4.1",
"mrm": "4.0.0",
"pinst": "3.0.0",
"prettier": "2.6.2",
"prettier-plugin-solidity": "1.0.0-beta.19",
"regenerator-runtime": "0.13.9",
"solhint": "3.3.7",
"solhint-plugin-prettier": "0.0.5",
"solidity-coverage": "0.7.21",
"truffle": "5.5.14",
"ts-node": "10.7.0",
"typescript": "4.6.4"
}
}