-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.79 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "ffb-backend",
"version": "1.0.0",
"description": "Fidelity First Brokers Backend API",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"lint": "eslint .",
"format": "prettier --write .",
"check-admin": "node scripts/checkAndCreateAdmin.js",
"reset-admin": "node scripts/resetAdminPassword.js"
},
"engines": {
"node": ">=14.0.0"
},
"keywords": [
"trading",
"investment",
"finance",
"api"
],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.9.0",
"bcrypt": "^5.1.1",
"bcryptjs": "^3.0.2",
"binance-api-node": "^0.12.9",
"compression": "^1.7.4",
"cors": "^2.8.5",
"crypto-js": "^4.2.0",
"dotenv": "^16.4.7",
"express": "^4.18.2",
"express-rate-limit": "^7.5.0",
"express-validator": "^7.2.1",
"handlebars": "^4.7.8",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"moment": "^2.30.1",
"mongoose": "^8.0.1",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"node-mailjet": "^6.0.8",
"nodemailer": "^6.10.0",
"qrcode": "^1.5.4",
"rate-limit-redis": "^4.2.0",
"redis": "^4.6.10",
"response-time": "^2.3.3",
"socket.io": "^4.7.2",
"speakeasy": "^2.0.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"technicalindicators": "^3.1.0",
"vercel": "^41.0.2",
"winston": "^3.11.0",
"winston-daily-rotate-file": "^4.7.1",
"ws": "^8.18.1"
},
"devDependencies": {
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"prettier": "^3.1.0",
"supertest": "^6.3.3"
}
}