-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Voktor Stolenets
committed
Dec 26, 2024
1 parent
f001e73
commit 4b32a5c
Showing
12 changed files
with
907 additions
and
2,972 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
HOST= | ||
PORT= | ||
DATABASE_URL= | ||
SUBGRAPHS_ENDPOINT= |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,34 @@ | ||
{ | ||
"name": "ambrodeo", | ||
"name": "ambrodeo-rest", | ||
"version": "1.0.0", | ||
"main": "index.js", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1", | ||
"start": "ts-node src/server.ts", | ||
"dev": "nodemon src/server.ts" | ||
"start": "tsc && node dist/server.js" | ||
}, | ||
"keywords": [], | ||
"author": "", | ||
"license": "ISC", | ||
"description": "", | ||
"devDependencies": { | ||
"@types/js-yaml": "^4.0.9", | ||
"@types/mongodb": "^4.0.6", | ||
"@types/node": "^22.10.2", | ||
"typescript": "^5.7.2" | ||
}, | ||
"dependencies": { | ||
"@fastify/cors": "^10.0.1", | ||
"@fastify/mongodb": "^9.0.1", | ||
"@fastify/multipart": "^9.0.1", | ||
"@fastify/swagger": "^9.4.0", | ||
"@fastify/swagger-ui": "^5.2.0", | ||
"axios": "^1.7.9", | ||
"crypto": "^1.0.1", | ||
"dotenv": "^16.4.7", | ||
"ethers": "^6.13.4", | ||
"fastify": "^5.2.0", | ||
"fastify-plugin": "^5.0.1", | ||
"fastify-swagger": "^5.1.1", | ||
"js-yaml": "^4.1.0", | ||
"jsonrpc-lite": "^2.2.0", | ||
"mongodb": "^6.12.0", | ||
"swagger-ui": "^5.18.2" | ||
}, | ||
"devDependencies": { | ||
"@types/js-yaml": "^4.0.9", | ||
"@types/node": "^22.10.2", | ||
"nodemon": "^3.1.9", | ||
"ts-node": "^10.9.2", | ||
"typescript": "^5.7.2" | ||
"mongodb": "^6.12.0" | ||
} | ||
} |
Oops, something went wrong.