-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 899 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
{
"name": "auth-template-app",
"version": "1.0.0",
"description": "A template for a simple authentication app",
"main": "src/index.js",
"type": "module",
"scripts": {
"dev": "node --watch src/index.js",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
},
"author": "Víctor Vásquez",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"email-validator": "^2.0.4",
"express": "^4.18.2",
"helmet": "^6.0.0",
"http-status-codes": "^2.2.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.7.1",
"password-validator": "^5.3.0",
"winston": "^3.8.2",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"jest": "^29.2.2",
"mongodb-memory-server": "^8.9.5",
"supertest": "^6.3.1"
}
}