-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.24 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
{
"name": "safe-backend-integration",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.14.0",
"axios": "^1.7.7",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"tsx": "^4.7.1",
"typescript": "^5.3.3"
},
"scripts": {
"format": "prettier --write .",
"format-check": "prettier --check .",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"lint-check": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"start": "./node_modules/.bin/tsx src/index.ts",
"test": "jest --runInBand",
"test:watch": "jest --watch --runInBand"
},
"dependencies": {
"@safe-global/api-kit": "^2.5.4",
"@safe-global/protocol-kit": "^2.0.0",
"@safe-global/safe-core-sdk-types": "^5.1.0",
"dotenv": "^16.3.1",
"ethers": "^6.13.4",
"siwe": "^2.3.2",
"ts-node": "^10.9.2",
"winston": "^3.11.0"
},
"packageManager": "[email protected]+sha1.4ba7fc5c6e704fce2066ecbfb0b0d8976fe62447"
}