-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.14 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.14 KB
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
{
"name": "@giveth/blockchain-integration-service",
"version": "1.0.0",
"description": "Blockchain integration service for transaction verification and multi-chain support",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rm -rf ./dist && tsc",
"start": "node dist/server.js",
"dev": "ts-node-dev --respawn --transpile-only src/server.ts",
"test": "NODE_ENV=test mocha --require ts-node/register 'src/**/*.test.ts' --timeout 10000",
"test:watch": "npm test -- --watch --watch-files src",
"test:coverage": "NODE_ENV=test nyc mocha --require ts-node/register 'src/**/*.test.ts'",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint --fix 'src/**/*.ts'",
"prettify": "prettier --write 'src/**/*.ts'"
},
"keywords": [
"blockchain",
"ethereum",
"solana",
"stellar",
"cardano",
"transaction-verification",
"web3",
"crypto"
],
"author": "Giveth",
"license": "MIT",
"dependencies": {
"@safe-global/api-kit": "^2.0.0",
"@solana/web3.js": "^1.87.7",
"axios": "^1.6.7",
"axios-retry": "^3.9.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"ethers": "^5.7.2",
"express": "^4.18.2",
"helmet": "^7.1.0",
"joi": "^17.12.0"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/mocha": "^10.0.0",
"@types/node": "^20.0.0",
"@types/sinon": "^21.0.0",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"chai": "^4.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"mocha": "^10.2.0",
"prettier": "^3.2.5",
"sinon": "^21.0.0",
"supertest": "^6.3.4",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=16.14.2"
}
}