-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.54 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.54 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "student_tracker",
"version": "3.2.0",
"description": "Generate Certificate for students",
"main": "app.js",
"scripts": {
"start": "node ./bin/www",
"dev": "nodemon ./bin/www",
"format": "npx prettier --write .",
"build:css": "npx tailwindcss -i ./src/input.css -o ./public/css/styles.css --watch",
"build": "npx tailwindcss -i ./src/input.css -o ./public/css/styles.css --minify",
"vercel-build": "npm install && npm run build",
"start:pm2": "pm2 start ./bin/www --name studenttracker --env production",
"lint": "npx eslint .",
"test": "jest --coverage",
"docker:build": "docker build -t codebyamrit/student-tracker:latest .",
"docker:run": "docker compose up -d",
"security:check": "npm audit --audit-level=moderate",
"clean": "rm -rf node_modules package-lock.json",
"db:backup": "node scripts/backup.js",
"release:patch": "npm version patch",
"release:minor": "npm version minor",
"release:major": "npm version major",
"postversion": "git push origin master --follow-tags"
},
"keywords": [
"student",
"tracker",
"certificate",
"pdf",
"express",
"mysql"
],
"author": "Amrit",
"license": "ISC",
"dependencies": {
"@google/generative-ai": "^0.24.1",
"@pdf-lib/fontkit": "^1.1.1",
"axios": "^1.15.0",
"bcrypt": "^6.0.0",
"compression": "^1.8.1",
"cookie-parser": "^1.4.7",
"cors": "^2.8.6",
"debug": "^4.4.3",
"dotenv": "^17.3.1",
"ejs": "^5.0.1",
"exceljs": "^4.4.0",
"express": "^5.2.1",
"express-jwt": "^8.5.1",
"express-rate-limit": "^8.3.1",
"express-session": "^1.19.0",
"express-validator": "^7.3.1",
"flowbite": "^4.0.1",
"helmet": "^8.1.0",
"ioredis": "^5.10.1",
"jsonwebtoken": "^9.0.3",
"morgan": "^1.10.1",
"multer": "^2.1.1",
"mysql2": "^3.20.0",
"nodemailer": "^8.0.3",
"nodemon": "^3.1.14",
"pdf-lib": "^1.17.1",
"rate-limit-redis": "^4.3.1",
"serve-favicon": "^2.5.1",
"sharp": "^0.34.5",
"winston": "^3.19.0"
},
"devDependencies": {
"@emnapi/runtime": "^1.9.1",
"autoprefixer": "^10.4.27",
"postcss": "^8.5.8",
"prettier": "^3.8.1",
"prettier-plugin-ejs": "^1.0.3",
"tailwindcss": "3.4.19"
},
"prettier": {
"plugins": [
"prettier-plugin-ejs"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/codebyamrit/school.git"
},
"bugs": {
"url": "https://github.com/codebyamrit/school/issues"
},
"homepage": "https://github.com/codebyamrit/school#readme"
}