-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
56 lines (56 loc) · 1.56 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
{
"name": "@nomad-xyz/chain-ops",
"version": "2.1.0",
"description": "Nomad Manual Processor",
"keywords": [
"nomad",
"processor"
],
"homepage": "https://github.com/nomad-xyz/monorepo/tree/main/packages/processor#readme",
"bugs": {
"url": "https://github.com/nomad-xyz/monorepo/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nomad-xyz/monorepo.git"
},
"license": "Apache-2.0 OR MIT",
"author": "Illusory Systems Inc.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"src/**/*"
],
"scripts": {
"build": "tsc --build",
"check": "tsc --noEmit",
"lint": "eslint --fix ./src",
"prettier": "prettier --write ./src",
"analyze": "yarn analyze-tokens && yarn analyze-transactions",
"analyze-tokens": "npx ts-node ./src/analyze/tokens.ts",
"analyze-transactions": "npx ts-node ./src/analyze/transaction-hashes.ts"
},
"dependencies": {
"@nomad-xyz/contracts-bridge": "1.1.0",
"@nomad-xyz/contracts-core": "1.1.0",
"@nomad-xyz/sdk": "2.1.1",
"@nomad-xyz/sdk-bridge": "1.1.1",
"axios": "^0.27.2",
"ethers": "^5.0.0",
"fs": "^0.0.1-security",
"graphql": "^16.5.0",
"graphql-request": "^4.3.0"
},
"devDependencies": {
"@types/node": "^18.6.3",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"dotenv": "^16.0.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"prettier": "^2.4.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}