-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
65 lines (65 loc) · 1.85 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
{
"scripts": {
"lint": "eslint . --ext .ts",
"format:common": "eslint 'common/**' --ext .ts --fix",
"format:server": "eslint 'server/src/**' --ext .ts --fix",
"format:relayer": "eslint 'relayer/src/**' --ext .ts --fix",
"prepare": "husky install",
"dev": "ts-node server/src/index.ts",
"build": "tsc -p server",
"start": "node server/dist/server/src/index.js",
"test": "jest"
},
"dependencies": {
"@slack/web-api": "^6.8.0",
"@types/crypto-js": "^4.1.1",
"amqplib": "^0.10.3",
"async-mutex": "^0.4.0",
"axios": "^1.1.2",
"big.js": "^6.2.1",
"cent.js": "^2.0.5",
"cls-rtracer": "^2.6.2",
"consolidate": "^0.16.0",
"cors": "^2.8.5",
"crypto-js": "^4.1.1",
"dotenv": "^16.0.3",
"ethereumjs-util": "^7.1.5",
"ethers": "^5.7.1",
"express": "^4.18.2",
"express-handlebars": "^6.0.6",
"handlebars": "^4.7.7",
"hdkey": "^2.0.1",
"husky": "^8.0.2",
"joi": "^17.6.3",
"lodash": "^4.17.21",
"mongoose": "^6.6.5",
"morgan": "^1.10.0",
"network-sdk": "^1.0.1",
"node-cron": "^3.0.2",
"redis": "^4.3.1",
"rest-api-errors": "^1.2.5",
"serialize-error": "8.1.0",
"typescript": "^4.7.4",
"winston": "^3.8.2"
},
"devDependencies": {
"@types/amqplib": "^0.8.2",
"@types/big.js": "^6.1.5",
"@types/consolidate": "^0.14.1",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/hdkey": "^2.0.1",
"@types/jest": "^29.2.2",
"@types/lodash": "^4.14.186",
"@types/morgan": "^1.9.3",
"@types/node-cron": "^3.0.4",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"babel-jest": "^29.1.2",
"eslint": "^8.25.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^29.1.2",
"ts-jest": "^29.0.3"
}
}