-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.83 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.83 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": "rojo-ecosystem-integration",
"version": "1.0.0",
"description": "Integración completa del ecosistema ROJO para Onchain Summer 2025",
"main": "backend/integration-server.js",
"scripts": {
"start": "node backend/integration-server.js",
"dev": "node backend/integration-server.js",
"build": "echo 'No build step required'",
"test": "node test-enhanced-features.js",
"test:enhanced": "node test-enhanced-features.js",
"test:apis": "node test-apis.js",
"test:manual": "echo \"Manual testing - open deployed URL\"",
"deploy": "railway deploy",
"rojo:start": "node start-rojo.js",
"pay": "echo \"ROJO Pay Biometric\"",
"wallet": "echo \"ROJO Smart Wallet\"",
"ecosystem": "echo \"ROJO Ecosystem Integration\"",
"compile": "node scripts/compile-contracts.js",
"deploy:base": "node scripts/deploy-base-railway.js",
"deploy:base:testnet": "node scripts/deploy-base-railway.js baseSepolia",
"deploy:base:mainnet": "node scripts/deploy-base-railway.js base",
"test:base": "node scripts/test-base-integration.js"
},
"dependencies": {
"@coinbase/coinbase-sdk": "^0.25.0",
"axios": "^1.6.0",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.0.0",
"ethers": "^6.15.0",
"express": "^4.18.2",
"pino": "^9.9.0",
"pino-http": "^10.1.0",
"pino-pretty": "^13.1.1",
"qrcode": "^1.5.3",
"sqlite3": "^5.1.6",
"ws": "^8.18.3",
"zod": "^3.22.0"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"rojo",
"ecosystem",
"integration",
"payments",
"smart-wallet",
"base",
"onchain",
"rebel"
],
"author": "ROJO Organization",
"license": "MIT",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^6.1.0",
"hardhat": "^3.0.1"
},
"type": "module"
}