2021-05-13 10:19:15 +00:00
|
|
|
{
|
2022-09-09 11:43:01 +00:00
|
|
|
"name": "@cerc-io/address-watcher",
|
2022-12-13 06:29:55 +00:00
|
|
|
"version": "0.2.18",
|
2021-06-17 12:26:38 +00:00
|
|
|
"description": "Address Watcher",
|
2021-05-13 10:19:15 +00:00
|
|
|
"private": true,
|
|
|
|
"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-09-02 04:57:56 +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",
|
2021-09-07 10:31:15 +00:00
|
|
|
"job-runner": "DEBUG=vulcanize:* node --enable-source-maps dist/job-runner.js",
|
2021-09-02 04:57:56 +00:00
|
|
|
"job-runner:dev": "DEBUG=vulcanize:* nodemon --watch src src/job-runner.ts",
|
2021-09-07 10:31:15 +00:00
|
|
|
"fill": "DEBUG=vulcanize:* node --enable-source-maps dist/fill.js",
|
2021-09-02 04:57:56 +00:00
|
|
|
"fill:dev": "DEBUG=vulcanize:* ts-node src/fill.ts"
|
2021-05-13 10:19:15 +00:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2022-09-09 11:43:01 +00:00
|
|
|
"url": "git+https://github.com/cerc-io/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": {
|
2022-09-09 11:43:01 +00:00
|
|
|
"url": "https://github.com/cerc-io/watcher-ts/issues"
|
2021-05-13 10:19:15 +00:00
|
|
|
},
|
2022-09-09 11:43:01 +00:00
|
|
|
"homepage": "https://github.com/cerc-io/watcher-ts#readme",
|
2021-05-13 10:19:15 +00:00
|
|
|
"dependencies": {
|
2021-09-02 04:57:56 +00:00
|
|
|
"@apollo/client": "^3.3.19",
|
2022-12-13 06:29:55 +00:00
|
|
|
"@cerc-io/cache": "^0.2.18",
|
|
|
|
"@cerc-io/ipld-eth-client": "^0.2.18",
|
|
|
|
"@cerc-io/solidity-mapper": "^0.2.18",
|
|
|
|
"@cerc-io/tracing-client": "^0.2.18",
|
|
|
|
"@cerc-io/util": "^0.2.18",
|
2021-05-13 10:19:15 +00:00
|
|
|
"@types/lodash": "^4.14.168",
|
2021-05-28 11:26:40 +00:00
|
|
|
"debug": "^4.3.1",
|
2022-07-11 05:59:33 +00:00
|
|
|
"ethers": "^5.4.4",
|
2022-11-16 05:44:54 +00:00
|
|
|
"express": "^4.18.2",
|
2021-05-13 10:19:15 +00:00
|
|
|
"graphql": "^15.5.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-06-04 09:49:30 +00:00
|
|
|
"typeorm-naming-strategies": "^2.0.0",
|
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-06-22 08:34:48 +00:00
|
|
|
"@types/chai": "^4.2.19",
|
2022-11-16 05:44:54 +00:00
|
|
|
"@types/express": "^4.17.14",
|
2021-06-22 08:34:48 +00:00
|
|
|
"@types/mocha": "^8.2.2",
|
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",
|
|
|
|
"mocha": "^8.4.0",
|
|
|
|
"nodemon": "^2.0.7"
|
2021-05-13 10:19:15 +00:00
|
|
|
}
|
|
|
|
}
|