12345678910111213141516171819202122232425262728 |
- {
- "name": "counter-solana-native",
- "version": "0.1.0",
- "description": "Counter program written using only Solana tooling",
- "main": "index.js",
- "author": "ngundotra",
- "license": "Apache-2.0",
- "private": false,
- "scripts": {
- "start-validator": "solana-test-validator --reset --quiet --bpf-program Fg6PaFpoGXkYsidMpWTK6W2BeZ7FEfcYkg476zPFsLnS ./target/deploy/counter_solana_native.so",
- "run-tests": "jest tests --detectOpenHandles",
- "test": "start-server-and-test start-validator http://localhost:8899/health run-tests"
- },
- "devDependencies": {
- "@types/bn.js": "^5.1.1",
- "@types/jest": "^29.0.0",
- "chai": "^4.3.6",
- "jest": "^29.0.2",
- "start-server-and-test": "^1.14.0",
- "ts-jest": "^28.0.8",
- "ts-jest-resolver": "^2.0.0",
- "ts-node": "^10.9.1",
- "typescript": "^4.8.2"
- },
- "dependencies": {
- "@solana/web3.js": "^1.56.2"
- }
- }
|