-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
94 lines (94 loc) · 2.79 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
89
90
91
92
93
94
{
"scripts": {
"commit": "cz",
"changelog": "npx generate-changelog",
"prepare": "husky install",
"dev": "nodemon",
"build": "tsc -p .",
"start": "node --max_old_space_size=6000 dist/server/index.js",
"start:production": "NODE_ENV=production node --max_old_space_size=6000 dist/server/index.js",
"test": "jest --testPathIgnorePatterns='/smoke|e2e/' --setupFiles dotenv/config --verbose",
"test:smoke": "jest -t smoke --setupFiles dotenv/config --verbose",
"test:e2e": "jest --testPathIgnorePatterns='smoke' -t e2e --setupFiles dotenv/config --verbose"
},
"dependencies": {
"@biconomy/gas-estimations": "^0.2.71",
"@slack/web-api": "^6.8.0",
"@types/config": "^3.3.3",
"@types/crypto-js": "^4.1.1",
"@types/node": "^22.10.1",
"amqplib": "^0.10.5",
"async-mutex": "^0.4.0",
"axios": "^1.1.2",
"axios-retry": "^4.5.0",
"cls-rtracer": "^2.6.2",
"commander": "^12.1.0",
"config": "^3.3.11",
"consolidate": "^0.16.0",
"cors": "^2.8.5",
"cron": "^3.1.6",
"crypto-js": "^4.1.1",
"dd-trace": "^4.17.0",
"dotenv": "^16.0.3",
"ethereumjs-util": "^7.1.5",
"express": "^4.18.2",
"hdkey": "^2.0.1",
"husky": "^8.0.2",
"ioredis": "^5.4.1",
"joi": "^17.6.3",
"lodash": "^4.17.21",
"mongoose": "^8.9.5",
"node-cache": "^5.1.2",
"node-mocks-http": "^1.14.1",
"pino": "^8.15.6",
"pino-http": "^8.5.0",
"pino-pretty": "^10.2.3",
"redlock": "^5.0.0-beta.2",
"serialize-error": "8.1.0",
"typescript": "^5.3.3",
"viem": "^2.21.49"
},
"devDependencies": {
"@biconomy/account": "^4.5.7",
"@biconomy/sdk": "^0.0.29",
"@eslint/js": "^9.13.0",
"@rhinestone/module-sdk": "^0.1.32",
"@types/amqplib": "^0.10.6",
"@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": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"babel-jest": "^29.1.2",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.13.0",
"eslint-config-eslint": "^11.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.11.0",
"jest": "^29.1.2",
"nodemon": "^3.0.1",
"prettier": "^3.3.3",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"tsx": "^4.19.2",
"typescript-eslint": "^8.11.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && npx cz --hook || true"
}
}
}