-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.6 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
{
"name": "musee-contracts",
"version": "0.2.1",
"description": "NFT contracts for Musee Dezentral",
"engines": {
"node": ">=16"
},
"repository": "https://github.com/ravespaceio/musee-contracts.git",
"author": "https://github.com/aaronmboyd",
"license": "MIT",
"bugs": {
"url": "https://github.com/ravespaceio/musee-contracts/issues"
},
"homepage": "https://github.com/ravespaceio/musee-contracts#readme",
"scripts": {
"clean": "npx hardhat clean",
"build": "npx hardhat compile",
"test": "npx hardhat test",
"coverage": "npx hardhat coverage",
"docgen": "npx hardhat docgen",
"deploy": "npx hardhat deploy",
"ipfs": "node --no-warnings ./scripts/ipfs.js",
"deploy:ropsten": "npx hardhat --network ropsten deploy",
"deploy:rinkeby": "npx hardhat --network rinkeby deploy",
"deploy:goerli": "npx hardhat --network goerli deploy",
"deploy:mainnet": "npx hardhat --network mainnet deploy",
"prettier:dryrun": "prettier ./contracts/*.sol ./contracts/**/*.sol ./test/**/*.ts ./deploy/**/*.ts ./utils/*.ts",
"prettier:write": "prettier --write ./contracts/*.sol ./contracts/**/*.sol ./test/**/*.ts ./deploy/**/*.ts ./utils/*.ts",
"lint": "yarn lint:sol",
"lint:sol": "solhint contracts/**/*.sol contracts/*.sol",
"snyk-protect": "snyk-protect",
"prepare": "npm run snyk-protect",
"postinstall": "husky install"
},
"devDependencies": {
"@chainlink/contracts": "^0.2.2",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^3.0.1",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.1.0",
"@openzeppelin/test-helpers": "^0.5.11",
"@snyk/protect": "^1.952.0",
"@types/chai": "^4.2.19",
"@types/chai-as-promised": "^7.1.4",
"@types/mocha": "^8.2.2",
"@types/node": "^16.11.6",
"@types/shelljs": "^0.8.9",
"chai-as-promised": "^7.1.1",
"chai-ethers": "^0.0.1",
"dotenv": "^10.0.0",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.4.1",
"fs": "^0.0.1-security",
"hardhat": "^2.3.3",
"hardhat-deploy": "^0.8.11",
"hardhat-deploy-ethers": "^0.3.0-beta.10",
"hardhat-docgen": "^1.1.1",
"hardhat-gas-reporter": "^1.0.6",
"husky": "^7.0.1",
"ipfs-http-client": "^53.0.1",
"ipfs-only-hash": "^4.0.0",
"prettier": "^2.3.2",
"prettier-plugin-solidity": "^1.0.0-beta.13",
"shelljs": "^0.8.4",
"solhint": "^3.3.6",
"solidity-coverage": "^0.7.16",
"ts-node": "^10.0.0",
"typescript": "^4.3.5"
},
"snyk": true,
"dependencies": {
"@nomiclabs/ethereumjs-vm": "^4.2.2",
"axios": "^0.24.0"
}
}