-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.24 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
45
46
47
48
49
50
{
"name": "poms",
"version": "1.0.0",
"description": "blockchain based product ownership management system",
"main": "src/index.js",
"scripts": {
"clean": "rimraf database",
"main": "node -r dotenv/config src/index.js -t main",
"side": "node -r dotenv/config src/index.js -t side",
"wallet": "node --experimental-repl-await wallet/index.js"
},
"bin": {
"executable": "src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/phyokyawdev/poms.git"
},
"keywords": [
"blockchain",
"ethereum",
"nodejs"
],
"author": "Phyo Kyaw",
"license": "MIT",
"bugs": {
"url": "https://github.com/phyokyawdev/poms/issues"
},
"homepage": "https://github.com/phyokyawdev/poms#readme",
"dependencies": {
"@ethereumjs/util": "^8.0.2",
"axios": "^1.2.1",
"commander": "^9.4.1",
"debug": "^4.3.4",
"ethereumjs-wallet": "^1.0.2",
"express": "^4.18.2",
"express-actuator": "^1.8.4",
"express-async-errors": "^3.1.1",
"http-errors": "^2.0.0",
"ip": "^1.1.8",
"level": "^8.0.0",
"merkle-patricia-tree": "^4.2.4",
"morgan": "^1.10.0",
"rimraf": "^4.0.5"
},
"devDependencies": {
"dotenv": "^16.0.3",
"nodemon": "^2.0.20"
}
}