-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 848 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 848 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
{
"name": "fuse-wallet-backend",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "ENV=LOCAL nodemon index.js",
"qa": "ENV=QA APPLICATION_NAME=WALLET_BACKEND nodemon index.js",
"prod": "ENV=PRODUCTION APPLICATION_NAME=WALLET_BACKEND nodemon index.js",
"build": "npm install",
"lint": "./node_modules/.bin/standard"
},
"author": "LiorRabin",
"license": "MIT",
"dependencies": {
"@colucom/osseus": "~2.3.1",
"@colucom/osseus-logger": "~0.5.1",
"@colucom/osseus-router": "~0.4.1",
"@colucom/osseus-server": "~0.2.1",
"ethereumjs-tx": "^1.3.7",
"ethereumjs-util": "^5.1.3",
"node-fetch": "^2.3.0",
"web3": "^1.0.0-beta.35",
"web3-utils": "^1.0.0-beta.35"
},
"devDependencies": {
"dotenv": "^7.0.0",
"standard": "^11.0.1"
}
}