-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.85 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
{
"name": "marketplace",
"version": "0.0.1",
"description": "marketplace",
"repository": "https://github.com/inc4/marketplace",
"license": "MIT",
"private": false,
"scripts": {
"api": "ts-node ./lib/main.ts",
"build": "hardhat compile",
"deploy": "hardhat deploy --network rinkeby",
"verify": "hardhat etherscan-verify --network rinkeby",
"sourcify": "hardhat sourcify --network rinkeby",
"test": "hardhat test",
"coverage": "hardhat coverage",
"lint": "eslint .",
"console": "hardhat console"
},
"devDependencies": {
"@types/chai-as-promised": "^7.1.4",
"@types/express": "^4.17.13",
"@types/mocha": "^8.2.2",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"express": "^4.17.1",
"hardhat-gas-reporter": "^1.0.4",
"istanbul": "^0.4.5",
"mocha": "^8.4.0",
"prettier": "^2.3.0",
"solidity-coverage": "https://github.com/SvineruS/solidity-coverage"
},
"dependencies": {
"@gnosis.pm/safe-deployments": "^1.1.0",
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.1.0",
"@pinata/sdk": "^1.1.23",
"@types/dotenv": "^8.2.0",
"@types/mongoose": "^5.11.97",
"dotenv": "^9.0.2",
"ethereum-waffle": "^3.2.0",
"ethers": "^5.5.1",
"express-graphql": "^0.12.0",
"graphql": "^16.0.1",
"hardhat": "^2.3.3",
"hardhat-deploy": "^0.8.11",
"hardhat-deploy-ethers": "0.3.0-beta.10",
"ipfs-unixfs-importer": "^9.0.5",
"mongoose": "^6.0.11",
"openzeppelin-solidity": "^4.2.0",
"ts-mongoose": "^0.0.24",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
}
}