-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.6 KB
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": "blockchain-project3",
"version": "0.1.0",
"description": "This repository containts an Ethereum DApp that demonstrates a Supply Chain flow between a Seller and Buyer. The user story is similar to any commonly used supply chain process. A Seller can add items to the inventory system stored in the blockchain. A Buyer can purchase such items from the inventory system. Additionally a Seller can mark an item as Shipped, and similarly a Buyer can mark an item as Received.",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "truffle test",
"compile": "truffle compile",
"migrate": "truffle migrate",
"ganache": "ganache-cli -m \"woman assault home vault someone robot tray immense tennis usual visual joy\" --chain.chainId 1337 -v",
"ganache_orig": "ganache-cli -m \"spirit supply whale amount human item harsh scare congress discover talent hamster\""
},
"dependencies": {
"@chakra-ui/react": "^2.4.6",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@next/font": "13.1.1",
"@truffle/hdwallet-provider": "^2.1.4",
"@types/node": "18.11.18",
"@types/react-dom": "18.0.10",
"connectkit": "^1.1.1",
"dotenv": "^16.0.3",
"eslint-config-next": "^12.0.4",
"ethers": "^5.7.2",
"framer-motion": "^8.0.2",
"next": "13.1.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"typescript": "4.9.4",
"wagmi": "^0.9"
},
"devDependencies": {
"@types/react": "^18.0.26",
"ganache-cli": "^6.12.2",
"ipfs": "^0.65.0",
"sol2uml": "^2.4.2",
"truffle": "^5.7.1",
"truffle-assertions": "^0.9.2"
}
}