-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.46 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.46 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
{
"name": "ispm",
"version": "1.0.1",
"description": "ISRDO Security Package - A collection of security middleware and authentication utilities for Node.js.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"test": "jest --coverage",
"lint": "eslint .",
"format": "prettier --write .",
"build": "npm run lint && npm run format && echo 'Build successful!'"
},
"keywords": [
"security",
"middleware",
"authentication",
"nodejs",
"isrdo",
"jwt",
"session",
"encryption",
"validation"
],
"author": "ISRDO",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"csurf": "^1.2.2",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-rate-limit": "^7.1.0",
"express-session": "^1.17.3",
"helmet": "^7.0.0",
"hpp": "^0.2.3",
"joi": "^17.6.0",
"jsonwebtoken": "^9.0.0",
"morgan": "^1.10.0",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"uuid": "^9.0.0",
"winston": "^3.8.2"
},
"devDependencies": {
"eslint": "^8.39.0",
"jest": "^29.0.0",
"nodemon": "^3.0.0",
"prettier": "^3.0.0",
"supertest": "^6.3.1"
},
"engines": {
"node": ">=14.0.0"
}
}