2021-05-13 10:19:15 +00:00
|
|
|
{
|
2021-05-28 11:26:40 +00:00
|
|
|
"name": "@vulcanize/erc20-watcher",
|
2021-05-13 10:19:15 +00:00
|
|
|
"version": "0.1.0",
|
|
|
|
"description": "ERC20 Watcher",
|
|
|
|
"private": true,
|
2021-09-02 04:57:56 +00:00
|
|
|
"main": "dist/index.js",
|
2021-05-13 10:19:15 +00:00
|
|
|
"scripts": {
|
2021-06-04 12:38:26 +00:00
|
|
|
"lint": "eslint .",
|
2021-09-07 10:31:15 +00:00
|
|
|
"test": "mocha -r ts-node/register src/**/*.test.ts",
|
2021-08-25 07:17:53 +00:00
|
|
|
"build": "tsc",
|
2021-09-07 10:31:15 +00:00
|
|
|
"server": "DEBUG=vulcanize:* node --enable-source-maps dist/server.js",
|
2021-09-02 04:57:56 +00:00
|
|
|
"server:dev": "DEBUG=vulcanize:* nodemon --watch src src/server.ts",
|
|
|
|
"server:mock": "MOCK=1 nodemon src/server.ts",
|
2021-09-21 11:13:55 +00:00
|
|
|
"job-runner": "DEBUG=vulcanize:* node --enable-source-maps dist/job-runner.js",
|
|
|
|
"job-runner:dev": "DEBUG=vulcanize:* nodemon --watch src src/job-runner.ts",
|
2021-09-07 10:31:15 +00:00
|
|
|
"watch:contract": "node --enable-source-maps dist/cli/watch-contract.js",
|
2021-09-02 04:57:56 +00:00
|
|
|
"watch:contract:dev": "ts-node src/cli/watch-contract.ts",
|
2021-09-21 11:13:55 +00:00
|
|
|
"fill": "DEBUG=vulcanize:* node dist/fill.js",
|
|
|
|
"fill:dev": "DEBUG=vulcanize:* ts-node src/fill.ts",
|
2021-08-27 12:17:23 +00:00
|
|
|
"token:deploy": "hardhat --network localhost token-deploy",
|
|
|
|
"token:deploy:docker": "hardhat --network docker token-deploy",
|
|
|
|
"token:transfer": "hardhat --network localhost token-transfer",
|
|
|
|
"token:transfer:docker": "hardhat --network docker token-transfer",
|
2021-09-21 11:13:55 +00:00
|
|
|
"token:approve": "hardhat --network localhost token-approve",
|
|
|
|
"token:approve:docker": "hardhat --network docker token-approve",
|
|
|
|
"token:transfer-from": "hardhat --network localhost token-transfer-from",
|
|
|
|
"token:transfer-from:docker": "hardhat --network docker token-transfer-from",
|
2021-08-27 12:17:23 +00:00
|
|
|
"block:latest": "hardhat --network localhost block-latest",
|
2021-10-20 10:36:03 +00:00
|
|
|
"block:latest:docker": "hardhat --network docker block-latest",
|
|
|
|
"reset": "DEBUG=vulcanize:* node --enable-source-maps dist/cli/reset.js",
|
|
|
|
"reset:dev": "DEBUG=vulcanize:* ts-node src/cli/reset.ts"
|
2021-05-13 10:19:15 +00:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2021-06-17 12:26:38 +00:00
|
|
|
"url": "git+https://github.com/vulcanize/watcher-ts.git"
|
2021-05-13 10:19:15 +00:00
|
|
|
},
|
|
|
|
"author": "",
|
2021-08-12 09:58:13 +00:00
|
|
|
"license": "AGPL-3.0",
|
2021-05-13 10:19:15 +00:00
|
|
|
"bugs": {
|
2021-06-17 12:26:38 +00:00
|
|
|
"url": "https://github.com/vulcanize/watcher-ts/issues"
|
2021-05-13 10:19:15 +00:00
|
|
|
},
|
2021-06-17 12:26:38 +00:00
|
|
|
"homepage": "https://github.com/vulcanize/watcher-ts#readme",
|
2021-05-13 10:19:15 +00:00
|
|
|
"dependencies": {
|
2021-09-07 10:31:15 +00:00
|
|
|
"@apollo/client": "^3.3.19",
|
2021-09-27 12:33:04 +00:00
|
|
|
"@ethersproject/providers": "5.3.0",
|
2021-05-13 10:19:15 +00:00
|
|
|
"@types/lodash": "^4.14.168",
|
2021-05-28 11:26:40 +00:00
|
|
|
"@vulcanize/cache": "^0.1.0",
|
|
|
|
"@vulcanize/ipld-eth-client": "^0.1.0",
|
2021-05-31 09:20:05 +00:00
|
|
|
"@vulcanize/solidity-mapper": "^0.1.0",
|
2021-07-09 07:08:25 +00:00
|
|
|
"@vulcanize/util": "^0.1.0",
|
2021-06-09 09:41:05 +00:00
|
|
|
"apollo-server-express": "^2.25.0",
|
2021-05-13 10:19:15 +00:00
|
|
|
"apollo-type-bigint": "^0.1.3",
|
2021-05-28 11:26:40 +00:00
|
|
|
"debug": "^4.3.1",
|
2021-06-08 10:37:52 +00:00
|
|
|
"ethers": "^5.2.0",
|
2021-05-13 10:19:15 +00:00
|
|
|
"express": "^4.17.1",
|
|
|
|
"graphql": "^15.5.0",
|
|
|
|
"graphql-import-node": "^0.0.4",
|
2021-05-13 13:48:08 +00:00
|
|
|
"graphql-request": "^3.4.0",
|
2021-06-08 05:44:27 +00:00
|
|
|
"json-bigint": "^1.0.0",
|
2021-05-28 11:26:40 +00:00
|
|
|
"lodash": "^4.17.21",
|
2021-05-31 08:36:48 +00:00
|
|
|
"reflect-metadata": "^0.1.13",
|
|
|
|
"typeorm": "^0.2.32",
|
2021-05-28 11:26:40 +00:00
|
|
|
"yargs": "^17.0.1"
|
2021-05-13 10:19:15 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-06-04 13:32:28 +00:00
|
|
|
"@ethersproject/abi": "^5.3.0",
|
2021-09-07 10:31:15 +00:00
|
|
|
"@nomiclabs/hardhat-ethers": "^2.0.2",
|
|
|
|
"@nomiclabs/hardhat-waffle": "^2.0.1",
|
2021-05-13 10:19:15 +00:00
|
|
|
"@types/express": "^4.17.11",
|
2021-06-08 05:44:27 +00:00
|
|
|
"@types/json-bigint": "^1.0.0",
|
2021-05-28 11:26:40 +00:00
|
|
|
"@types/yargs": "^17.0.0",
|
2021-06-04 12:38:26 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^4.25.0",
|
|
|
|
"@typescript-eslint/parser": "^4.25.0",
|
2021-06-04 13:32:28 +00:00
|
|
|
"chai": "^4.3.4",
|
2021-06-04 12:38:26 +00:00
|
|
|
"eslint": "^7.27.0",
|
|
|
|
"eslint-config-semistandard": "^15.0.1",
|
|
|
|
"eslint-config-standard": "^16.0.3",
|
|
|
|
"eslint-plugin-import": "^2.23.3",
|
|
|
|
"eslint-plugin-node": "^11.1.0",
|
|
|
|
"eslint-plugin-promise": "^5.1.0",
|
2021-06-04 13:32:28 +00:00
|
|
|
"eslint-plugin-standard": "^5.0.0",
|
2021-09-07 10:31:15 +00:00
|
|
|
"hardhat": "^2.3.0",
|
2021-06-04 13:32:28 +00:00
|
|
|
"mocha": "^8.4.0",
|
2021-12-09 05:09:35 +00:00
|
|
|
"nodemon": "^2.0.7",
|
|
|
|
"pprof": "^3.2.0"
|
2021-05-13 10:19:15 +00:00
|
|
|
}
|
|
|
|
}
|