-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 861 Bytes
/
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
{
"name": "nodejs_auth",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"start": "node app.js",
"test": "jest tests"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.6.7",
"bcrypt": "^5.1.1",
"cookie-parser": "^1.4.6",
"dotenv": "^16.4.1",
"ejs": "^3.1.9",
"expect": "^29.7.0",
"express": "^4.18.2",
"express-handlebars": "^7.1.2",
"express-session": "^1.18.0",
"handlebars": "^4.7.8",
"imap-simple": "^5.1.0",
"lodash": "^4.17.21",
"mysql2": "^3.9.1",
"node-imap": "^0.9.6",
"nodemailer": "^6.9.11",
"sequelize": "^6.36.0"
},
"devDependencies": {
"jest": "^29.7.0",
"supertest": "^6.3.4"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/app.js",
"<rootDir>/build/"
]
}
}