-
Notifications
You must be signed in to change notification settings - Fork 107
/
package.json
84 lines (84 loc) · 2.71 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@lens-protocol/momoka",
"version": "2.1.1",
"description": "Momoka node for the Lens protocol",
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": "./lib/index.js",
"./client": "./lib/client/index.js",
"./package.json": "./package.json"
},
"files": [
"lib/**/*",
"client/**/*",
"images/**/*",
"README.md"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"eslint:fix": "eslint \"src/**/*.ts\" --quiet --fix",
"eslint": "eslint \"src/**/*.ts\" --quiet",
"start:fork": "REQ_TIMEOUT=100000 anvil --fork-url NODE_URL --silent",
"start": "env-cmd -f .env node lib/runnable/da-verifier-node.runnable.js",
"start:failed": "env-cmd -f .env ts-node src/failed-submissons.runnable.ts",
"debug:playground": "npm run build && env-cmd -f .env node lib/__PLAYGROUND__/index.js",
"generate": "graphql-codegen",
"test": "npm run build && env-cmd -f .env.test jest",
"lint": "pnpm run prettier && pnpm run tsc",
"lint:fix": "pnpm run prettier:fix && pnpm run eslint",
"prettier:fix": "prettier --write .",
"prettier": "prettier --check .",
"tsc": "tsc --noEmit",
"prepublishOnly": "pnpm run build",
"publish": "pnpm publish --access public"
},
"devDependencies": {
"@graphql-codegen/cli": "2.11.3",
"@graphql-codegen/typed-document-node": "2.3.2",
"@graphql-codegen/typescript": "2.7.2",
"@graphql-codegen/typescript-operations": "2.5.2",
"@types/bluebird": "^3.5.38",
"@types/jest": "^29.2.6",
"@types/yargs": "^17.0.22",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"env-cmd": "^10.1.0",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "npm:eslint-plugin-i@^2.26.0-2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^3.4.0",
"ethereum-abi-types-generator": "^1.3.2",
"graphql-codegen": "^0.4.0",
"jest": "^29.4.0",
"ts-jest": "^29.0.5",
"ts-node": "10.9.1",
"typescript": "^4.6.4"
},
"dependencies": {
"@ethersproject/abstract-provider": "^5.7.0",
"@ethersproject/bytes": "^5.7.0",
"@graphql-typed-document-node/core": "^3.1.2",
"@urql/core": "^3.0.5",
"arweave": "^1.13.3",
"axios": "^1.3.4",
"bluebird": "^3.7.2",
"ethereum-multicall": "^2.24.0",
"ethers": "^5.7.2",
"graphql": "^16.6.0",
"level": "^8.0.0",
"yargs": "^17.7.1"
},
"license": "MIT",
"bin": {
"momoka": "./lib/bin/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lens-protocol/momoka.git"
},
"packageManager": "[email protected]"
}