-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
85 lines (85 loc) · 2.53 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
85
{
"name": "grindery-nexus-connector-web3",
"version": "1.0.0",
"description": "",
"main": "dist/server.js",
"scripts": {
"local:action": "ts-node src/local action",
"local:trigger": "ts-node src/local trigger",
"install": "./install.sh",
"build": "./build.sh",
"server": "nodemon --exec ts-node src/server",
"server:dist": "cd dist && node server",
"test": "eslint --ext js,ts src/ && tsc -p tsconfig.json --noEmit",
"prepare": "husky install",
"prettier:check": "prettier --check \"**/*.{js,json,md,ts}\"",
"prettier:write": "prettier --write \"**/*.{js,json,md,ts}\"",
"test:unit": "mocha src/test/*.test.ts --config mocha.mocharc.cjs"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"npx --yes prettier --write"
]
},
"author": "",
"license": "MIT",
"dependencies": {
"@influxdata/influxdb-client": "^1.31.0",
"@metamask/eth-sig-util": "^5.0.2",
"@onflow/fcl": "^1.2.0",
"@onflow/six-create-account": "^0.0.9",
"@sentry/node": "^6.17.8",
"algosdk": "^1.23.2",
"axios": "^0.26.1",
"base58-js": "^1.0.4",
"bignumber.js": "^9.1.1",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.4.0",
"console-log-json": "github:SAPikachu/console-log-json",
"core-js": "^3.22",
"deep-object-diff": "^1.1.9",
"dotenv": "^16.0.0",
"elliptic": "^6.5.4",
"ethers": "^5.7.0",
"ethers-eip712": "^0.2.0",
"exponential-backoff": "^3.1.0",
"google-auth-library": "^8.7.0",
"grindery-nexus-common-utils": "^2.0.22",
"ipfs-core": "^0.17.0",
"ipfs-http-client": "^59.0.0",
"jose": "^4.10.0",
"json-rpc-2.0": "^1.4.2",
"lodash": "^4.17.21",
"mocha": "^10.2.0",
"mutexify": "^1.4.0",
"near-api-js": "^1.1.0",
"react": "^18.2.0",
"sinon": "^15.2.0",
"uuid": "^8.3.2",
"web3": "^1.7.4",
"ws": "^8.11.0"
},
"devDependencies": {
"@onflow/types": "^1.0.2",
"@tsconfig/node16": "^1.0.2",
"@types/chai-as-promised": "^7.1.5",
"@types/lodash": "^4.14.182",
"@types/mocha": "^10.0.1",
"@types/mutexify": "^1.2.0",
"@types/uuid": "^8.3.4",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"chai-exclude": "^2.1.0",
"eslint": "^8.41.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.0",
"nodemon": "^2.0.20",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"typescript": "^4.6.3"
}
}