123456789101112131415161718192021222324252627282930 |
- {
- "name": "counter-mpl-stack",
- "version": "0.1.0",
- "description": "Counter program written using MPL 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": {
- "@metaplex-foundation/beet": "^0.6.1",
- "@metaplex-foundation/solita": "^0.15.2",
- "@solana/web3.js": "^1.56.2"
- }
- }
|