-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 929 Bytes
/
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
{
"name": "nft-solidity",
"version": "1.0.0",
"description": "Homework for Blockchain class, creating an Nft ERC721 token using Solidity.",
"main": "index.js",
"dependencies": {
"@openzeppelin/contracts": "^4.1.0",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@openzeppelin/test-environment": "^0.1.9",
"@openzeppelin/test-helpers": "^0.5.11",
"chai": "^4.3.4",
"eslint": "^7.26.0",
"eslint-config-google": "^0.14.0",
"mocha": "^8.3.2",
"truffle": "^5.3.4"
},
"scripts": {
"compile": "truffle compile",
"migrate": "truffle migrate",
"test": "truffle test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KostyalBalint/Nft-Solidity.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/KostyalBalint/Nft-Solidity/issues"
},
"homepage": "https://github.com/KostyalBalint/Nft-Solidity#readme"
}