-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 897 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 897 Bytes
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
{
"name": "isms-build",
"version": "1.35.0",
"description": "ISMS Template Builder – Build Mode",
"scripts": {
"start": "node server/index.js",
"test": "jest --runInBand",
"test:watch": "jest --watch --runInBand",
"test:coverage": "jest --runInBand --coverage",
"security:check": "bash scripts/security-check.sh",
"security:audit": "npm audit --audit-level=high",
"security:outdated": "npm outdated"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"better-sqlite3": "^12.6.2",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"multer": "^2.1.1",
"nodemailer": "^8.0.1",
"pdf-parse": "1.1.1",
"qrcode": "^1.5.4",
"xml2js": "^0.6.2"
},
"optionalDependencies": {
"mysql2": "^3.11.0"
},
"devDependencies": {
"jest": "^30.2.0",
"puppeteer": "^24.39.1",
"supertest": "^7.2.2"
}
}