-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.67 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.67 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
{
"name": "bank-inner-core",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "vitest run",
"server": "npx nodemon server.js",
"client": "npm run dev --prefix frontend",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"start": "node server.js",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"db:setup": "node scripts/db/setup_db.js",
"db:seed": "node scripts/db/seed.js",
"db:check": "node scripts/db/check_state.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"@neondatabase/serverless": "^1.0.2",
"@sentry/node": "^10.51.0",
"@sentry/profiling-node": "^10.51.0",
"@simplewebauthn/server": "^13.3.0",
"@socket.io/redis-adapter": "^8.3.0",
"bcryptjs": "^3.0.3",
"bullmq": "^5.76.6",
"compression": "^1.8.1",
"cookie-parser": "^1.4.7",
"cookieparser": "^0.1.0",
"cors": "^2.8.6",
"dotenv": "^17.2.4",
"express": "^5.2.1",
"express-rate-limit": "^8.3.2",
"firebase-admin": "^13.8.0",
"form-data": "^4.0.5",
"geoip-lite": "^2.0.1",
"handlebars": "^4.7.9",
"helmet": "^8.1.0",
"ioredis": "^5.10.1",
"jsonwebtoken": "^9.0.3",
"mailgun.js": "^12.7.0",
"morgan": "^1.10.1",
"node-cron": "^4.2.1",
"socket.io": "^4.8.3",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"twilio": "^6.0.0",
"ua-parser-js": "^2.0.9",
"uuid": "^13.0.0",
"web-push": "^3.6.7",
"zod": "^4.3.6",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"concurrently": "^9.2.1",
"supertest": "^7.2.2",
"vitest": "^4.1.5"
}
}