forked from cerc-io/laconic-faucet
Prathamesh Musale
5f71d4cc2c
Part of [laconicd testnet validator enrollment](https://www.notion.so/laconicd-testnet-validator-enrollment-6fc1d3cafcc64fef8c5ed3affa27c675) Co-authored-by: IshaVenikar <ishavenikar7@gmail.com> Reviewed-on: cerc-io/laconic-faucet#1 Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com> Co-committed-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
37 lines
969 B
JSON
37 lines
969 B
JSON
{
|
|
"name": "laconic-faucet",
|
|
"version": "0.1.0",
|
|
"main": "dist/index.js",
|
|
"license": "UNLICENSED",
|
|
"private": true,
|
|
"devDependencies": {
|
|
"@types/cors": "^2.8.17",
|
|
"@types/express": "^4.17.21",
|
|
"@typescript-eslint/eslint-plugin": "^5.47.1",
|
|
"@typescript-eslint/parser": "^5.47.1",
|
|
"eslint": "^8.35.0",
|
|
"eslint-config-semistandard": "^15.0.1",
|
|
"eslint-config-standard": "^16.0.3",
|
|
"eslint-plugin-import": "^2.27.5",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"eslint-plugin-promise": "^5.1.0",
|
|
"eslint-plugin-standard": "^5.0.0",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.5.3"
|
|
},
|
|
"dependencies": {
|
|
"@cosmjs/encoding": "^0.32.4",
|
|
"@cosmjs/proto-signing": "^0.32.4",
|
|
"@cosmjs/stargate": "^0.32.4",
|
|
"@keyv/sqlite": "^3.6.7",
|
|
"cors": "^2.8.5",
|
|
"express": "^4.19.2",
|
|
"toml": "^3.0.0"
|
|
},
|
|
"scripts": {
|
|
"lint": "eslint .",
|
|
"build": "yarn tsc",
|
|
"start": "node dist/index.js"
|
|
}
|
|
}
|