-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
44 lines (44 loc) · 1.19 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
{
"name": "bgl-wbgl-bridge-service",
"version": "0.3.1",
"description": "BGL-WBGL(ETH) bridge",
"main": "src/server.js",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "nodemon -L --inspect=0.0.0.0:9229 src/server.js",
"test": "mocha src/tests/**/*.js -r dotenv/config --timeout 10000",
"lint:check": "eslint .",
"lint:fix": "eslint --fix",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write \"**/*.js\" .prettierrc --config ./.prettierrc",
"format": "npm run lint:fix && npm run prettier:fix"
},
"dependencies": {
"bitcoin-core": "^3.0.0",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"ethereumjs-common": "^1.5.2",
"ethereumjs-tx": "^2.1.2",
"express": "^4.17.1",
"mongoose": "^5.12.10",
"web3": "^1.3.6",
"winston": "^3.8.2"
},
"devDependencies": {
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^9.2.2",
"nodemon": "^2.0.7",
"pre-commit": "^1.2.2",
"prettier": "^2.6.2",
"should": "^13.2.3"
},
"options": {
"mocha": "--timeout 20000 --recursive --require should"
},
"pre-commit": [
"lint"
]
}