32 lines
828 B
JSON
32 lines
828 B
JSON
|
|
{
|
||
|
|
"name": "@emoney/graphql-api",
|
||
|
|
"version": "1.0.0",
|
||
|
|
"description": "GraphQL API server for eMoney Token Factory",
|
||
|
|
"main": "dist/index.js",
|
||
|
|
"scripts": {
|
||
|
|
"build": "tsc",
|
||
|
|
"start": "node dist/index.js",
|
||
|
|
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
|
||
|
|
"test": "jest"
|
||
|
|
},
|
||
|
|
"dependencies": {
|
||
|
|
"@apollo/server": "^4.9.5",
|
||
|
|
"graphql": "^16.8.1",
|
||
|
|
"graphql-subscriptions": "^2.0.0",
|
||
|
|
"graphql-ws": "^5.14.2",
|
||
|
|
"@graphql-tools/schema": "^10.0.0",
|
||
|
|
"@graphql-tools/load-files": "^6.6.1",
|
||
|
|
"@graphql-tools/merge": "^9.0.0",
|
||
|
|
"@emoney/blockchain": "workspace:*",
|
||
|
|
"@emoney/events": "workspace:*"
|
||
|
|
},
|
||
|
|
"devDependencies": {
|
||
|
|
"@types/node": "^20.10.0",
|
||
|
|
"typescript": "^5.3.0",
|
||
|
|
"ts-node-dev": "^2.0.0",
|
||
|
|
"jest": "^29.7.0",
|
||
|
|
"@types/jest": "^29.5.11"
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|