Files
019923cb-917c-7662-87b8-cbf…/package.json

25 lines
564 B
JSON
Raw Normal View History

2025-09-07 10:49:28 +00:00
{
"name": "solana-voting",
"version": "0.1.0",
"description": "Solana voting program built with Anchor",
"main": "index.js",
"scripts": {
"test": "anchor test",
"lint": "eslint --ext .ts tests/",
"build": "anchor build",
"deploy": "anchor deploy"
},
"dependencies": {
"@coral-xyz/anchor": "^0.29.0",
"@solana/web3.js": "^1.87.0"
},
"devDependencies": {
"@types/mocha": "^10.0.0",
"@types/node": "^20.0.0",
"eslint": "^8.0.0",
"mocha": "^10.0.0",
"ts-mocha": "^10.0.0",
"typescript": "^5.0.0"
}
}