-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 799 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 799 Bytes
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
{
"name": "anp-node",
"private": true,
"version": "1.0.0",
"description": "Sovereign ANP/ACP node with an Express backend and static frontend",
"main": "index.js",
"scripts": {
"start": "node backend/src/server.js",
"dev": "node --watch backend/src/server.js",
"start:local": "./scripts/agent-start-local.sh",
"dev:local": "./scripts/agent-dev-local.sh",
"agent:start": "./scripts/agent-start-local.sh",
"agent:dev": "./scripts/agent-dev-local.sh",
"backend:start": "./scripts/backend-start-local.sh",
"backend:dev": "./scripts/backend-dev-local.sh"
},
"engines": {
"node": ">=24"
},
"dependencies": {
"@libsql/client": "^0.14.0",
"ethers": "^6.16.0",
"express": "^5.1.0"
},
"devDependencies": {
"vercel": "^50.33.1"
}
}