-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.74 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.74 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
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "flexfi-back",
"version": "1.0.0",
"description": "FlexFi backend - A financial platform connecting traditional finance to Solana blockchain",
"main": "dist/index.js",
"engines": {
"node": "20.x"
},
"scripts": {
"start": "node dist/index.js",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"build": "tsc --project tsconfig.build.json || echo 'TypeScript compilation completed with errors'",
"postbuild": "if [ ! -d dist ] || [ -z \"$(ls -A dist)\" ]; then echo 'Warning: dist directory is empty, copying source files...'; mkdir -p dist && cp -r src/* dist/; fi",
"prebuild": "rm -rf dist",
"build:check": "tsc --noEmit",
"test": "jest",
"test:unit": "jest --testPathPattern=src/tests/unit",
"test:integration": "jest --testPathPattern=src/tests/integration",
"test:coverage": "jest --coverage",
"lint": "eslint . --ext .ts",
"format": "prettier --write \"src/**/*.ts\""
},
"dependencies": {
"@sendinblue/client": "^3.3.1",
"@solana/spl-token": "^0.4.13",
"@solana/web3.js": "^1.98.2",
"axios": "^1.9.0",
"bcrypt": "^5.1.1",
"bs58": "^6.0.0",
"colors": "^1.4.0",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.5.0",
"envalid": "^8.0.0",
"express": "^4.18.2",
"express-rate-limit": "^7.5.0",
"express-validator": "^7.2.1",
"helmet": "^6.0.1",
"jsonwebtoken": "^9.0.2",
"mongoose": "^7.8.7",
"morgan": "^1.10.0",
"nodemailer": "^6.10.1",
"passport": "^0.6.0",
"passport-apple": "^2.0.2",
"passport-google-oauth20": "^2.0.0",
"passport-twitter": "^1.0.4",
"pdfkit": "^0.17.1",
"sib-api-v3-sdk": "^8.5.0",
"tweetnacl": "^1.0.3",
"validator": "^13.15.15",
"winston": "^3.17.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/bs58": "^4.0.4",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.21",
"@types/express-rate-limit": "^5.1.3",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.9",
"@types/mongoose": "^5.11.96",
"@types/morgan": "^1.9.4",
"@types/node": "^18.19.87",
"@types/nodemailer": "^6.4.17",
"@types/passport": "^1.0.12",
"@types/passport-apple": "^2.0.3",
"@types/passport-google-oauth20": "^2.0.11",
"@types/passport-twitter": "^1.0.40",
"@types/pdfkit": "^0.13.9",
"@types/supertest": "^6.0.3",
"@types/validator": "^13.15.1",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^8.37.0",
"jest": "^29.7.0",
"mongodb-memory-server": "^10.1.4",
"prettier": "^2.8.7",
"supertest": "^7.1.1",
"ts-jest": "^29.3.4",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.3"
}
}