forked from SubStream-Protocol/SubStream-Protocol-Backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 691 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 691 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
29
30
{
"name": "substream-backend",
"version": "1.0.0",
"description": "API for SubStream Protocol",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"test": "jest"
},
"dependencies": {
"@stellar/stellar-sdk": "^14.6.1",
"axios": "^1.6.2",
"cors": "^2.8.6",
"dotenv": "^17.3.1",
"ethers": "^6.8.1",
"express": "^5.2.1",
"form-data": "^4.0.0",
"ipfs-http-client": "^60.0.1",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"stellar-sdk": "^13.3.0",
"web3.storage": "^4.5.4"
},
"devDependencies": {
"jest": "^29.7.0",
"nodemon": "^3.0.2",
"supertest": "^7.0.0"
}
}