-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.87 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": "multipay",
"version": "1.8.0",
"description": "Multi Crypto payment gateway",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "nodemon src/index.ts",
"test": "jest --verbose",
"build": "rm -rf ./dist && tsc",
"start": "npm run build && node dist/index.js",
"makeProto": "protoc --plugin=protoc-gen-ts_proto=./node_modules/.bin/protoc-gen-ts_proto --ts_proto_out=. ./src/protos/multipay.proto --ts_proto_opt=outputServices=grpc-js,esModuleInterop=true",
"docker:dev": "docker compose -f docker-compose.dev.yml up",
"docker:build": "docker compose up --build -d",
"lint": "npx eslint"
},
"dependencies": {
"@apollo/client": "^3.13.5",
"@mikro-orm/core": "^6.4.8",
"@mikro-orm/mongodb": "^6.4.8",
"@mikro-orm/mysql": "^6.4.8",
"@mikro-orm/postgresql": "^6.4.8",
"@trustwallet/wallet-core": "^4.2.14",
"apollo-server": "^3.13.0",
"axios": "^1.8.3",
"dotenv": "^16.4.7",
"graphql": "^16.10.0",
"linksmith": "^1.3.1",
"tronweb": "^6.0.1"
},
"devDependencies": {
"@eslint/js": "^9.22.0",
"@grpc/grpc-js": "^1.13.1",
"@grpc/proto-loader": "^0.7.13",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.9",
"eslint": "^9.22.0",
"globals": "^16.0.0",
"jest": "^29.7.0",
"nodemon": "^3.1.9",
"ts-jest": "^29.3.0",
"ts-node": "^10.9.2",
"ts-proto": "^2.6.1",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.0"
},
"files": [
"dist",
"src",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/yahya-aghdam/multipay.git"
},
"keywords": [
"Crypto",
"payment"
],
"author": "Yahya aghdam",
"license": "MIT",
"bugs": {
"url": "https://github.com/yahya-aghdam/multipay/issues"
},
"homepage": "https://github.com/yahya-aghdam/multipay#readme"
}