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
42 lines (42 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.03 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
{
"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": "knex --knexfile src/db/knexfile.js migrate:latest",
"migrate:rollback": "knex --knexfile src/db/knexfile.js migrate:rollback"
},
"dependencies": {
"axios": "^1.7.0",
"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",
"node-cron": "^3.0.3",
"pg": "^8.22.0",
"stellar-sdk": "^11.3.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": {
"@redocly/cli": "^2.35.1",
"jest": "^29.7.0",
"supertest": "^7.2.2"
}
}