-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 945 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 945 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
31
32
{
"name": "vesting-backend",
"version": "1.0.0",
"description": "API for Vesting Vault",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "node test-unit.js",
"test:integration": "node test-pagination.js",
"test:load": "node scripts/run-tge-load-test.js",
"test:load:basic": "node scripts/run-tge-load-test.js basic",
"test:load:comprehensive": "node scripts/run-tge-load-test.js comprehensive",
"test:load:quick": "node scripts/run-tge-load-test.js quick"
},
"dependencies": {
"@apollo/server": "^5.4.0",
"@nestjs/platform-socket.io": "^11.1.14",
"@nestjs/websockets": "^11.1.14",
"cors": "^2.8.6",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"p-retry": "^7.1.1",
"pg": "^8.18.0",
"socket.io": "^4.8.3",
"socket.io-redis": "^5.4.0",
"stellar-sdk": "^13.3.0"
},
"devDependencies": {
"artillery": "^2.0.0",
"ethers": "^6.8.0"
}
}