-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.25 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
{
"name": "weplay-nft-contract",
"version": "1.0.0",
"description": "WePlay NFT Contract",
"repository": "https://github.com/inc4/weplay-nft-contract",
"author": "Oleksiy Pyltsov <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"build": "hardhat compile",
"deploy": "hardhat run ./scripts/deploy.ts",
"mint": "hardhat run ./scripts/mint.ts",
"test": "hardhat test",
"lint": "eslint .",
"console": "hardhat console"
},
"devDependencies": {
"@types/chai-as-promised": "^7.1.4",
"@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",
"mocha": "^8.4.0",
"prettier": "^2.3.0"
},
"dependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.1.0",
"@types/dotenv": "^8.2.0",
"arweave": "^1.10.15",
"dotenv": "^9.0.2",
"ethereum-waffle": "^3.2.0",
"ethers": "^5.0.0",
"hardhat": "^2.3.0",
"prompt-sync": "^4.2.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
}
}