-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.13 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
{
"name": "ledger-tests-xah",
"version": "1.0.0",
"description": "Test utility for testing functionality of ledger-app-xah",
"scripts": {
"build": "tsc",
"test:unit": "LOG_LEVEL=error jest --config=jest.config.unit.js --runInBand",
"test:integration": "LOG_LEVEL=error jest --config=jest.config.integration.js --runInBand",
"lint": "eslint ./src/**/* --ext .ts",
"format": "npx prettier --write ./src"
},
"dependencies": {
"@ledgerhq/hw-app-xrp": "^6.28.0",
"@ledgerhq/hw-transport-node-speculos": "^6.28.0",
"@transia/xrpl": "^2.7.3-alpha.26",
"dotenv": "^16.4.5",
"lodash": "^4.17.21",
"winston": "^3.13.0"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/jest": "^29.5.0",
"@types/lodash": "^4.17.0",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.7.0",
"prettier": "^2.8.4",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}