-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.37 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
44
{
"name": "auth",
"version": "1.0.0",
"description": "Node app includes jwt, secure cookie, session management and email verification via otp.",
"type": "module",
"main": "index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"testWatch": "cross-env PORT=5001 NODE_ENV='test' NODE_OPTIONS='--experimental-vm-modules'; npx jest --watchAll --testTimeout=10000 --detectOpenHandles",
"test": "cross-env PORT=4001 NODE_ENV='test' NODE_OPTIONS='--experimental-vm-modules'; jest --coverage --testTimeout=15000 --forceExit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sunny-unik/node-auth.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Sunny-unik/node-auth/issues"
},
"homepage": "https://github.com/Sunny-unik/node-auth#readme",
"dependencies": {
"ajv": "^8.12.0",
"ajv-errors": "^3.0.0",
"ajv-formats-draft2019": "^1.6.1",
"bcrypt": "^5.1.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"helmet": "^7.0.0",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.1.1",
"nodemailer": "^6.9.2"
},
"devDependencies": {
"cross-env": "^7.0.3",
"jest": "^29.7.0",
"nodemon": "^3.0.2",
"supertest": "^6.3.3"
}
}