@ixily/activ
Version:
Alpha Capture Trade Idea Verification. Blockchain ownership proven trade ideas and strategies.
141 lines (140 loc) • 6.54 kB
JSON
{
"name": "@ixily/activ",
"version": "4.10.23",
"description": "Alpha Capture Trade Idea Verification. Blockchain ownership proven trade ideas and strategies.",
"main": "dist/index.js",
"engines": {
"node": ">= 18.0.0",
"npm": ">= 8.6.0"
},
"scripts": {
"compile": "npx hardhat compile --show-stack-traces",
"redeploy": "npm run compile && npm run deploy",
"deploy": "npm run compile && npx hardhat run --config hardhat.config.ts scripts/deploy-v4.ts && npm run build",
"deploy-hardhat": "npx hardhat run scripts/deploy-v4-hardhat.ts --network hardhatDemo",
"deploy-amoy": "npx hardhat run scripts/deploy-v4-amoy.ts --network amoy",
"deploy-polygon-prod": "export PRODUCTION_PRIVATE_WALLET=\"$(gcloud secrets versions access 1 --secret=contract-address-prod)\" && npx hardhat run scripts/deploy-v4-polygon-prod.ts --network polygonProd",
"deploy-sepolia": "npx hardhat run scripts/deploy-v4-sepolia.ts --network sepolia",
"deploy-goerli": "npx hardhat run scripts/deploy-v4-sepolia.ts --network goerli",
"build": "rimraf dist && node scripts/prebuild.js && tsc --project ./tsconfig.json",
"reinstall": "run-script-os",
"reinstall:win32": "install.bat",
"reinstall:darwin:linux": "sh install.sh",
"example": "nodemon ./example/example.ts --exec ts-node",
"example2": "npm run compile && npx hardhat run --config hardhat.config.ts examples/backend/console-app/example-v4.ts",
"custom-test": "rimraf dist && mocha --config unit-mocharc.js --exit",
"server": "nodemon ./examples/backend/express-node-app/index.ts --exec ts-node",
"console": "nodemon ./examples/backend/console-app/console-app.ts --exec ts-node",
"crednft": "nodemon ./examples/backend/console-app/credential-nft.ts --exec ts-node",
"weavedb": "nodemon ./examples/backend/console-app/weavedb.ts --exec ts-node",
"ce": "nodemon ./examples/backend/console-app/contract-event.ts --exec ts-node",
"console-2": "nodemon ./examples/backend/console-app/json-rpc-provider.ts --exec ts-node",
"ig-auth": "nodemon ./examples/backend/console-app/ig-auth.js",
"install:activ-web": "cd ./activ-web && npm install --force",
"build:activ-web": "cd ./activ-web && npm run build",
"install:react:example": "cd examples/frontend/activ-react && npm install --force",
"start:react:example": "cd examples/frontend/activ-react && npm start",
"deploy:react:example": "cd examples/frontend/activ-react && npm run deploy",
"install:vue:example": "cd examples/frontend/activ-vue && npm install --force",
"start:vue:example": "cd examples/frontend/activ-vue && npm start",
"install:legacy:example": "cd examples/frontend/activ-legacy && npm install --force",
"start:legacy:example": "cd examples/frontend/activ-legacy && npm start",
"publish:activ": "npm install --force && npm run build && npm publish",
"debug:browser": "npm run build && npm run install:react:example && npm run start:react:example",
"deploy:debug": "npm run deploy && npm run install:react:example && npm run start:react:example",
"lit-action-debug": "nodemon ./src/modules/chunks/pricing/lit-action-template-debug.js",
"lit-action-example": "nodemon ./examples/backend/console-app/lit-action.ts --exec ts-node",
"deploy-pkgs": "npm run publish:activ && npm run publish:activ-web",
"amoy-test-v4": "npx hardhat test test/modules/activ-v4.module.spec.ts",
"lit-actions-cache-server-demo": "nodemon ./src-admin/modules/demo-express-cache-server.ts --exec ts-node",
"views-cache-server-demo-dev": "nodemon ./src-admin/modules/demo-express-cache-views-server.ts --exec ts-node",
"views-cache-server-demo": "ts-node ./src-admin/modules/demo-express-cache-views-server.ts",
"lit-actions-croupier-server-demo": "nodemon --config nodemon-croupier.json",
"bundle-contract": "npx webpack build --config ./bundle/bundle-contract.js",
"build-contract": "rimraf bundle/dist-contract && npm run bundle-contract",
"bundle-rules-v1": "npx webpack build --config ./bundle/bundle-rules-v1.js",
"build-rules-v1": "rimraf bundle/dist-rules/v1 && npm run bundle-rules-v1",
"activ-angular:init": "cd ./examples/frontend/activ-angular && npm install --force && npm run start",
"activ-angular": "cd ./examples/frontend/activ-angular && npm run dev",
"deploy:test:contract": "npm run build-contract && npm run build-rules-v1 && npx hardhat run scripts/deploy-v4-amoy.ts --network amoy"
},
"repository": {
"type": "git",
"url": "https://source.developers.google.com/p/backend-restful-api/r/activ"
},
"keywords": [
"Trade",
"Ideas",
"Blockchain",
"Smart",
"Contract",
"NFT"
],
"author": "@crhodes @jbatty @ssribeiro",
"license": "ISC",
"dependencies": {
"@lit-protocol/types": "~2.2.63",
"@pinata/sdk": "~2.1.0",
"axios": "~1.5.1",
"bignumber.js": "^9.1.2",
"buffer": "~6.0.3",
"crypto-js": "~4.2.0",
"ethers": "5.5.1",
"isomorphic-fetch": "~3.0.0",
"jimp": "0.22.10",
"pako": "2.1.0",
"rxjs": "~6.6.3",
"serialize-javascript": "6.0.1",
"siwe": "~1.1.6",
"web3": "~1.10.4"
},
"devDependencies": {
"@lit-protocol/lit-node-client-nodejs": "~2.2.63",
"@nomicfoundation/hardhat-chai-matchers": "~1.0.6",
"@nomicfoundation/hardhat-network-helpers": "~1.0.10",
"@nomicfoundation/hardhat-toolbox": "~2.0.2",
"@nomiclabs/hardhat-ethers": "~2.2.3",
"@nomiclabs/hardhat-etherscan": "~3.1.8",
"@openzeppelin/contracts": "~4.9.3",
"@openzeppelin/contracts-upgradeable": "~4.9.1",
"@openzeppelin/hardhat-upgrades": "~1.28.0",
"@typechain/ethers-v5": "~10.2.1",
"@typechain/hardhat": "~6.1.6",
"@types/bignumber.js": "^5.0.0",
"@types/chai": "~4.3.4",
"@types/cors": "~2.8.13",
"@types/crypto-js": "~4.1.1",
"@types/cryptojs": "~3.1.30",
"@types/express": "~4.17.3",
"@types/json-stable-stringify": "~1.0.34",
"@types/mocha": "~10.0.1",
"@types/node": "~18.18.06",
"@types/node-fetch": "~2.6.3",
"@types/serialize-javascript": "~5.0.2",
"@types/web3": "~1.2.2",
"bitcoinjs-lib": "~6.1.0",
"chai": "~4.3.7",
"cors": "~2.8.5",
"dotenv": "~16.0.3",
"esbuild": "~0.14.39",
"express": "~4.18.2",
"hardhat": "~2.22.3",
"hardhat-abi-exporter": "~2.10.1",
"hardhat-gas-reporter": "~1.0.10",
"hex2dec": "~1.1.2",
"level": "^8.0.0",
"mocha": "~9.2.2",
"multiformats": "~9.7.1",
"node-fetch": "~2.6.7",
"nodemon": "~2.0.20",
"react": "~18.2.0",
"redis": "~4.6.0",
"rimraf": "~3.0.2",
"run-script-os": "~1.1.6",
"ts-loader": "~9.5.0",
"ts-node": "~10.9.1",
"typechain": "~8.3.2",
"typescript": "~4.9.5",
"webpack-cli": "~5.1.4"
}
}