{ "name": "solpay", "version": "1.0.0", "description": "A Node.js TypeScript application", "main": "dist/index.js", "scripts": { "build": "tsc", "start": "node dist/index.js", "dev": "ts-node src/index.ts", "watch": "tsc --watch", "clean": "rm -rf dist", "test": "jest" }, "keywords": [ "nodejs", "typescript", "solpay" ], "author": "", "license": "MIT", "devDependencies": { "@types/express": "^5.0.3", "@types/jest": "^29.5.8", "@types/node": "^20.10.0", "@types/mysql": "^2.15.24", "jest": "^29.7.0", "ts-jest": "^29.1.0", "ts-node": "^10.9.0", "typescript": "^5.3.0" }, "dependencies": { "@solana/web3.js": "^1.98.4", "dotenv": "^17.2.1", "express": "^4.18.2", "mysql2": "^3.14.3" } }