-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 909 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 909 Bytes
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
{
"name": "shipment-tracker",
"version": "1.0.0",
"description": "Shipment Tracking Application is a REST APIs based application that lets you track shipping orders in a transparent and public way",
"main": "app/server.js",
"scripts": {
"test": "hardhat test"
},
"keywords": [
"blockchain",
"shipment",
"deliery",
"tracker"
],
"author": "@elmol",
"license": "MIT",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.3.0",
"ethereum-waffle": "^3.4.0",
"hardhat": "^2.5.0",
"prettier": "^2.3.2",
"prettier-plugin-solidity": "^1.0.0-beta.17"
},
"dependencies": {
"ethers": "^5.4.3",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-async-handler": "^1.1.4",
"http-status-codes": "^2.1.4"
}
}