-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.15 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.15 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
{
"name": "@sfpro/data",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev --turbopack",
"build": "pnpm api:generate && next build",
"start": "next start",
"lint": "biome check .",
"codegen": "graphclient build --dir ./subgraph-protocol/",
"typecheck": "tsc --noEmit",
"test:fetch-super-tokens": "tsx scripts/test-fetch-super-tokens.ts",
"test:coingecko-ids": "tsx scripts/test-coingecko-ids.ts",
"test:daily-prices": "tsx scripts/test-daily-prices.ts",
"test:current-price": "tsx scripts/test-current-price.ts",
"openapi": "openapi-typescript ./coingecko/on-chain-dex-api-beta.json -o ./coingecko/coingeckoDexApi.d.ts",
"api:generate": "tsx scripts/generate-openapi.ts",
"api:validate": "tsx scripts/validate-schemas.ts",
"api:dev": "pnpm api:generate && next dev --turbopack",
"trigger:dev": "pnpm dlx trigger.dev@latest dev",
"trigger:login": "pnpm dlx trigger.dev@latest login",
"trigger:deploy": "pnpm dlx trigger.dev@latest deploy"
},
"dependencies": {
"@asteasolutions/zod-to-openapi": "^7.3.4",
"@coingecko/coingecko-typescript": "^2.5.0",
"@superfluid-finance/metadata": "^1.6.2",
"@superfluid-finance/tokenlist": "^5.38.0",
"@trigger.dev/sdk": "^4.3.3",
"@vercel/blob": "^2.0.1",
"decimal.js": "^10.6.0",
"graphql": "^16.12.0",
"lodash": "^4.17.21",
"next": "16.0.8",
"p-limit": "^7.2.0",
"papaparse": "^5.5.3",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"swagger-ui-react": "5.30.3",
"viem": "^2.44.4",
"zod": "^3.25.76"
},
"devDependencies": {
"@graphprotocol/client-cli": "^3.0.7",
"@tailwindcss/postcss": "^4.1.18",
"@trigger.dev/build": "^4.3.3",
"@types/decimal.js": "^7.4.3",
"@types/lodash": "^4.17.23",
"@types/node": "^24.10.9",
"@types/papaparse": "^5.5.2",
"@types/react": "^19.2.9",
"@types/react-dom": "^19.2.3",
"@types/swagger-ui-react": "^5.18.0",
"dotenv": "^17.2.3",
"npm": "^11.8.0",
"tailwindcss": "^4.1.18",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"packageManager": "pnpm@9.15.9+sha512.68046141893c66fad01c079231128e9afb89ef87e2691d69e4d40eee228988295fd4682181bae55b58418c3a253bde65a505ec7c5f9403ece5cc3cd37dcf2531"
}