forked from llamafolio/llamafolio-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 3.31 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": "llamafolio-api",
"version": "0.0.1",
"description": "LlamaFolio API",
"scripts": {
"adapter": "tsx scripts/run-adapter.ts",
"build": "tsx scripts/build-adapters.ts",
"dev": "sls offline",
"deploy:dev": "pnpm build && sls deploy --stage dev",
"deploy:prod": "pnpm build && NODE_ENV='production' sls deploy --stage prod",
"create-adapter": "tsx scripts/create-adapter.ts",
"delete-adapter": "tsx scripts/delete-adapter.ts",
"update-adapter": "tsx scripts/update-adapter.ts",
"adapter-balances": "tsx scripts/run-adapter-balances.ts",
"update-adapter-balances": "tsx scripts/update-adapter-balances.ts",
"update-adapter-balances-prices": "tsx scripts/update-adapter-balances-prices.ts",
"update-swagger": "tsx scripts/update-swagger.ts",
"get-contract-info": "tsx scripts/get-contract-info.ts",
"update-balances": "tsx scripts/update-balances.ts",
"revalidate-contracts": "tsx scripts/revalidate-contracts.ts",
"revalidate-all-contracts": "tsx scripts/revalidate-all-contracts.ts",
"revalidate-contracts-rec": "tsx scripts/revalidate-contracts-rec.ts",
"update-protocols": "tsx scripts/update-protocols.ts",
"update-protocols-tokens": "tsx scripts/update-protocols-tokens.ts",
"update-yields": "tsx scripts/update-yields.ts",
"nft-floors": "tsx --require='dotenv/config' scripts/nft-floors.ts",
"lint": "eslint --fix . --ext js,cjs,mjs,ts,d.ts,json,md --cache",
"format": "prettier --write '**/*.{md,json,js,cjs,mjs,ts,d.ts,sh}' --ignore-path='./.eslintignore' --ignore-unknown --cache",
"typecheck": "tsc --noEmit --skipLibCheck",
"clean": "rm -rf .esbuild .serverless"
},
"license": "GPL-3.0-or-later",
"dependencies": {
"@aws-sdk/client-lambda": "^3.398.0",
"@clickhouse/client": "^0.2.10",
"@slack/web-api": "^7.0.1",
"@llamafolio/tokens": "^0.1.106",
"dayjs": "^1.11.9",
"dotenv": "^16.3.1",
"graphql": "^16.8.1",
"graphql-request": "^6.1.0",
"lodash": "^4.17.21",
"viem": "^2.7.22",
"zod": "^3.22.2"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.119",
"@types/eslint": "^8.44.2",
"@types/node": "^20.5.7",
"@types/serverless": "^3.12.14",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"abitype": "^0.9.8",
"esbuild-analyzer": "^0.2.0",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-markdown": "^3.0.1",
"eslint-plugin-markdownlint": "^0.5.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-security": "^1.7.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"pino": "^8.18.0",
"prettier": "^3.0.3",
"prettier-plugin-sh": "^0.13.1",
"prettier-plugin-sql": "^0.15.1",
"serverless": "^3.34.0",
"serverless-esbuild": "^1.46.0",
"serverless-offline": "^12.0.4",
"serverless-prune-plugin": "^2.0.2",
"tsx": "^3.12.7",
"typescript": "^5.2.2",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.34.3"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18",
"pnpm": ">=8.0.0",
"yarn": "------>PLEASE USE PNPM<------",
"npm": "------>PLEASE USE PNPM<------"
},
"keywords": ["LlamaFolio", "API", "OSS", "Portfolio", "Tracker"]
}