forked from SmartDropLabs/smartdrop-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.21 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
{
"name": "smartdrop-backend",
"version": "0.1.0",
"private": true,
"description": "SmartDrop API and indexing services",
"engines": {
"node": ">=20.9.0"
},
"scripts": {
"start": "node src/index.js",
"dev": "node --watch src/index.js",
"test": "jest",
"migrate": "node src/db/migrate.js up",
"migrate:dry-run": "node src/db/migrate.js up --dry-run",
"migrate:status": "node src/db/migrate.js status",
"migrate:rollback": "node src/db/migrate.js down"
},
"dependencies": {
"@sentry/node": "^10.71.0",
"@stellar/stellar-sdk": "^16.0.0",
"axios": "^1.7.0",
"compression": "^1.8.1",
"cors": "^2.8.5",
"csv-parser": "^3.2.1",
"dotenv": "^16.4.5",
"envalid": "^8.2.0",
"express": "^4.21.0",
"helmet": "^8.2.0",
"ioredis": "^5.4.1",
"knex": "^3.3.0",
"multer": "^2.2.0",
"pg": "^8.23.0",
"swagger-ui-express": "^5.0.1",
"winston": "^3.14.0",
"winston-daily-rotate-file": "^5.0.0",
"ws": "^8.21.0",
"yamljs": "^0.3.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@babel/preset-env": "^7.29.7",
"@redocly/cli": "^2.35.1",
"jest": "^29.7.0",
"node-cron": "^4.6.0",
"supertest": "^7.2.2"
}
}