-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.74 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
{
"name": "vrt-core",
"version": "0.0.3",
"description": "Core Smart Contracts for Vehicle Registration Token Project, a protocol for trace vehicle's property and their history in Ethereum blockchain.",
"author": {
"name": "Andrea Antonutti",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/1M4nt0/vrt-core"
},
"keywords": [
"blockchain",
"vehicles"
],
"license": "MIT",
"scripts": {
"build-contract-abi": "docker run --rm -v %cd%/:/src ethereum/solc:stable --abi --include-path /src/node_modules/ -o /src/abis --base-path . /src/contracts/VehicleMarketplace.sol --overwrite && docker run --rm -v %cd%/:/src ethereum/solc:stable --abi --include-path /src/node_modules/ -o /src/abis --base-path . /src/contracts/VehicleRegistrationToken.sol --overwrite",
"create-graph": "graph create vrtproject --node https://api.thegraph.com/deploy/",
"create-local-graph": "graph create vrtproject --node http://127.0.0.1:8020",
"codegen": "graph codegen",
"build-graph": "graph build",
"deploy-graph": "graph deploy vrtproject --ipfs https://api.thegraph.com/ipfs/ --node http://127.0.0.1:8020",
"deploy-local-graph": "graph deploy vrtproject --ipfs http://127.0.0.1:5001 --node http://127.0.0.1:8020"
},
"dependencies": {
"@graphprotocol/graph-ts": "^0.27.0",
"@openzeppelin/contracts": "^4.5.0",
"axios": "^0.26.1",
"ethereumjs-util": "^7.1.4",
"ethers": "^5.6.2"
},
"devDependencies": {
"@truffle/hdwallet-provider": "^2.0.7",
"ethereum-abi-types-generator": "^1.3.2",
"truffle-flattener": "^1.6.0"
}
}