-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.81 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.81 KB
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
{
"name": "unchained",
"license": "MIT",
"private": true,
"engines": {
"node": ">=20"
},
"workspaces": [
"monitoring",
"pulumi",
"node/proxy/**/*",
"node/packages/**/*",
"node/coinstacks/**/*",
"go/coinstacks/**/pulumi"
],
"scripts": {
"build": "yarn workspaces foreach -Apt run build",
"clean": "yarn workspaces foreach -Ap run clean && rm -rf dist node_modules",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "eslint '*/**/*.{js,ts}' && yarn lint:ts",
"lint:ts": "tsc --noEmit",
"prepare": "husky install"
},
"dependencies": {
"@moralisweb3/common-evm-utils": "^2.27.2",
"@moralisweb3/common-streams-utils": "^2.27.2",
"@shapeshiftoss/logger": "^1.1.2",
"@types/node": "^22.18.8",
"axios": "^1.6.2",
"axios-retry": "^4.0.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"moralis": "^2.27.2",
"morgan": "^1.10.0",
"p-queue": "^9.0.0",
"swagger-ui-express": "^5.0.0",
"tsoa": "^6.6.0",
"viem": "^2.33.2"
},
"devDependencies": {
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/express": "4.17.15",
"@types/morgan": "^1.9.9",
"@types/swagger-ui-express": "^4.1.6",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"nodemon": "^3.0.2",
"prettier": "^3.1.1",
"typescript": "5.9.3"
},
"resolutions": {
"@moralisweb3/common-evm-utils@npm:^2.27.2": "patch:@moralisweb3/common-evm-utils@npm%3A2.27.2#~/.yarn/patches/@moralisweb3-common-evm-utils-npm-2.27.2-e6cbe4fc9a.patch"
}
}