forked from Heliobond/backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.01 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
{
"name": "heliobond-backend",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "ts-node src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "jest"
},
"dependencies": {
"@grpc/grpc-js": "^1.14.4",
"@grpc/proto-loader": "^0.8.1",
"@stellar/stellar-sdk": "^15.1.0",
"cors": "^2.8.6",
"dataloader": "^2.2.3",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"express-rate-limit": "^8.5.2",
"graphql": "^16.14.2",
"graphql-http": "^1.22.4",
"node-cron": "^4.2.1",
"swagger-ui-express": "^5.0.1",
"ws": "^8.21.0"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/node": "^25.9.3",
"@types/node-cron": "^3.0.11",
"@types/supertest": "^7.2.0",
"@types/swagger-ui-express": "^4.1.8",
"@types/ws": "^8.18.1",
"jest": "^30.4.2",
"supertest": "^7.2.2",
"ts-jest": "^29.4.11",
"ts-node": "^10.9.2",
"typescript": "^6.0.3"
}
}