create-midnight-app
Version:
🌙 Scaffold for building Midnight smart contracts with dynamic type detection and automated CLI generation
27 lines (26 loc) • 1.49 kB
JSON
{
"name": "@midnight-ntwrk/counter-cli",
"version": "0.1.0",
"license": "Apache-2.0",
"private": true,
"type": "module",
"scripts": {
"auto-generate-ts": "node scripts/auto-generator.ts",
"analyze": "node --experimental-specifier-resolution=node --loader ts-node/esm src/quick-test.ts",
"testnet-remote": "node --experimental-specifier-resolution=node --loader ts-node/esm src/testnet-remote.ts",
"testnet-remote-ps": "cp -r proof-server-testnet.yml ./dist/ && node --experimental-specifier-resolution=node --loader ts-node/esm src/testnet-remote-start-proof-server.ts",
"testnet-local": "node --experimental-specifier-resolution=node --loader ts-node/esm src/testnet-local.ts",
"standalone": "docker compose -f standalone.yml pull && node --experimental-specifier-resolution=node --loader ts-node/esm src/standalone.ts",
"test-api": "docker compose -f standalone.yml pull && DEBUG='testcontainers' vitest run",
"test-against-testnet": "RUN_ENV_TESTS=true TEST_ENV=testnet TEST_WALLET_SEED=1dec0dd58fbe4d3206ef960aebff95a77e09dffbd19f3e9439d23fe6de4fcdd1 vitest run",
"build": "rm -rf dist && tsc --project tsconfig.build.json",
"lint": "eslint src",
"typecheck": "tsc -p tsconfig.json --noEmit",
"start-testnet-remote": "npm run build && npm run testnet-remote",
"start-testnet-remote-ps": "npm run build && npm run testnet-remote-ps"
},
"dependencies": {
"@midnight-ntwrk/contract": "*",
"dotenv": "^16.5.0"
}
}