{ "name": "ojo-faucet", "version": "1.0.0", "description": "A REST API for GETting tokens", "main": "src/index.ts", "scripts": { "start": "nodemon src/index.ts", "build": "rimraf dist && tsc", "ts.check": "tsc --project tsconfig.json", "add-build": "git add dist" }, "author": "Adam Wozniak (@adamewozniak)", "license": "ISC", "dependencies": { "@cosmjs/stargate": "^0.31.0", "axios": "0.27.2", "cors": "^2.8.5", "cosmwasm": "1.1.1", "dotenv": "^16.0.3", "express": "^4.18.2", "nodemon": "^3.0.1" }, "devDependencies": { "@types/cors": "^2.8.12", "@types/expect": "^24.3.0", "@types/express": "^4.17.13", "@types/node": "^16.11.1", "pre-commit": "^1.2.2", "rimraf": "^5.0.5", "ts-node": "^10.3.0", "tslib": "^2.3.1", "typescript": "^4.8.2" }, "pre-commit": [ "ts.check", "build", "add-build" ] }