-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.98 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.98 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
{
"name": "wander-cache",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postinstall": "patch-package",
"update-prices": "[ -f .env ] && set -a && . ./.env && set +a || true; curl -X GET \"http://${COOLIFY_SERVICE_NAME:-localhost}:3000/api/cron/update-prices\" -H \"Authorization: Bearer ${CRON_SECRET}\"",
"process-transak-savings": "[ -f .env ] && set -a && . ./.env && set +a || true; curl -X GET \"http://${COOLIFY_SERVICE_NAME:-localhost}:3000/api/cron/process-transak-savings\" -H \"Authorization: Bearer ${CRON_SECRET}\"",
"update-flp-tokens": "[ -f .env ] && set -a && . ./.env && set +a || true; curl -X GET \"http://${COOLIFY_SERVICE_NAME:-localhost}:3000/api/cron/update-flp-tokens\" -H \"Authorization: Bearer ${CRON_SECRET}\"",
"vesting-trigger": "[ -f .env ] && set -a && . ./.env && set +a || true; curl -X GET \"http://${COOLIFY_SERVICE_NAME:-localhost}:3000/api/cron/vesting-trigger\" -H \"Authorization: Bearer ${CRON_SECRET}\"",
"update-token-infos": "[ -f .env ] && set -a && . ./.env && set +a || true; curl -X GET \"http://${COOLIFY_SERVICE_NAME:-localhost}:3000/api/cron/update-token-infos\" -H \"Authorization: Bearer ${CRON_SECRET}\"",
"update-tier-info": "[ -f .env ] && set -a && . ./.env && set +a || true; curl -X GET \"http://${COOLIFY_SERVICE_NAME:-localhost}:3000/api/cron/update-tier-info\" -H \"Authorization: Bearer ${CRON_SECRET}\""
},
"dependencies": {
"@permaweb/aoconnect": "^0.0.77",
"@upstash/redis": "^1.35.1",
"next": "15.2.8",
"p-limit": "^6.2.0",
"p-retry": "^6.2.1",
"react": "19.0.1",
"react-dom": "19.0.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.2.6",
"patch-package": "^8.0.0",
"postinstall-postinstall": "^2.1.0",
"typescript": "^5"
}
}