-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
88 lines (88 loc) · 2.26 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "wban-backend",
"version": "1.5.2",
"description": "wBAN backend for swaps",
"main": "dist/app.js",
"scripts": {
"start": "ts-node src/app.ts",
"dev": "nodemon src/app.ts",
"build": "tsc --project ./",
"test": "NODE_ENV=test yarn nyc --reporter=text --reporter=html --check-coverage=true mocha",
"lint": "pretty-quick --staged && lint-staged",
"audit:fix": "npm_config_yes=true npx yarn-audit-fix",
"relayer:list": "ts-node src/tools/relayer-list.ts"
},
"author": "Wrap That Potassium <wrap-that-potassium@protonmail.com>",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.17",
"@types/chai-as-promised": "^7.1.3",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/express-session": "^1.17.5",
"@types/mocha": "^9.1.1",
"@types/node": "^18.11.9",
"@types/node-cron": "^3.0.6",
"@types/redlock": "^4.0.3",
"@types/websocket": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"eslint": "^7.25.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.4.0",
"husky": ">=4",
"lint-staged": ">=10",
"mocha": "^10.0.0",
"nodemon": "^2.0.20",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"sinon": "^10.0.0",
"sinon-chai": "^3.6.0",
"ts-node": "^10.9.1",
"ts-sinon": "^2.0.1",
"typescript": "^4.9.3"
},
"dependencies": {
"@bananocoin/bananojs": "2.7.10",
"@ethersproject/providers": "^5.7.2",
"async-mutex": "^0.4.0",
"axios": "^1.1.3",
"axios-cache-adapter": "^2.7.3",
"bullmq": "^1.86.4",
"cors": "^2.8.5",
"defender-relay-client": "1.37.0",
"dotenv": "^16.0.3",
"ethers": "^5.7.2",
"express": "^4.18.2",
"express-session": "^1.17.3",
"ioredis": "^5.2.4",
"node-cron": "^3.0.2",
"redlock": "^5.0.0-beta.2",
"siwe": "^1.1.6",
"tslog": "^3.2.0",
"wban-smart-contract": "2.2.0",
"websocket": "^1.0.34"
},
"resolutions": {
"got": "^11.8.5"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"lint-staged": {
"*.{ts,js}": "eslint --cache --fix"
},
"nyc": {
"lines": 46,
"functions": 29.6,
"branches": 54,
"statements": 46
}
}