-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.02 KB
/
package.json
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
{
"name": "bank-app",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "nodemon index.js",
"start": "nodemon index.js",
"test": "vitest",
"coverage": "vitest run --coverage",
"test:watch": "vitest watch",
"test:log": "vitest --reporter verbose --logHeapUsage --logCalls"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"axios": "^1.7.9",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-validator": "^7.2.1",
"helmet": "^8.0.0",
"jsonwebtoken": "^9.0.2",
"mysql2": "^3.12.0",
"node-cron": "^3.0.3",
"nodemailer": "^6.9.16",
"nodemon": "^3.1.9",
"sanitizer": "^0.1.3",
"sequelize": "^6.37.5",
"smile-identity-core": "^3.1.0",
"soap": "^1.1.7",
"ua-parser-js": "^2.0.0",
"winston": "^3.17.0"
},
"devDependencies": {
"sequelize-cli": "^6.6.2",
"supertest": "^7.0.0",
"vitest": "^3.0.4"
}
}