-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.31 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.31 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "node-framework",
"version": "2.0.0",
"description": "A modern and comprehensive Node.js MVC framework with Express, Socket.IO, Sequelize ORM, and real-time capabilities for building scalable web applications",
"keywords": [
"framework",
"nodejs",
"express",
"mvc",
"socket.io",
"real-time",
"websocket",
"sequelize",
"orm",
"mysql",
"authentication",
"jwt",
"rest-api",
"web-framework",
"backend",
"api",
"middleware",
"routing"
],
"homepage": "https://github.com/refkinscallv/node-framework#readme",
"bugs": {
"url": "https://github.com/refkinscallv/node-framework/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/refkinscallv/node-framework.git"
},
"engines": {
"node": ">=24.0.0",
"npm": ">=11.0.0"
},
"license": "MIT",
"author": "Refkinscallv <refkinscallv@gmail.com>",
"type": "commonjs",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js --ignore public/ --ignore app/views/",
"dev:debug": "nodemon --inspect index.js",
"build": "npm run format && npm run lint",
"test": "jest --coverage --verbose",
"test:watch": "jest --watch",
"test:unit": "jest --testPathPattern=tests/unit",
"test:integration": "jest --testPathPattern=tests/integration",
"lint": "eslint \"**/*.js\" --fix",
"format": "prettier --write \"**/*.{js,json,md,yml}\"",
"format:check": "prettier --check \"**/*.{js,json,md,yml}\"",
"db:migrate": "node core/database/migrate.js",
"db:seed": "node core/database/seed.js",
"db:reset": "node core/database/reset.js",
"logs:clear": "rm -rf logs/*",
"prepare": "husky install || true"
},
"_moduleAliases": {
"@app": "./app",
"@core": "./core",
"@public": "./public"
},
"dependencies": {
"@refkinscallv/express-routing": "^2.0.2",
"bcrypt": "^6.0.0",
"compression": "^1.8.1",
"cookie-parser": "^1.4.7",
"cors": "^2.8.6",
"dayjs": "^1.11.19",
"dotenv": "^17.3.1",
"ejs": "^5.0.1",
"express": "^5.2.1",
"express-fileupload": "^1.5.2",
"express-rate-limit": "^8.3.1",
"express-validator": "^7.3.1",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.3",
"md5": "^2.3.0",
"module-alias": "^2.3.4",
"morgan": "^1.10.1",
"mysql2": "^3.19.1",
"nodemailer": "^8.0.2",
"qs": "^6.15.0",
"sequelize": "^6.37.8",
"socket.io": "^4.8.3",
"uniqid": "^5.4.0",
"uuid": "^13.0.0",
"winston": "^3.19.0",
"winston-daily-rotate-file": "^5.0.0",
"zod": "^4.3.6"
},
"devDependencies": {
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-node": "^11.1.0",
"husky": "^9.1.7",
"jest": "^30.3.0",
"lint-staged": "^16.3.3",
"nodemon": "^3.1.14",
"prettier": "^3.8.1",
"supertest": "^7.2.2"
},
"optionalDependencies": {
"bufferutil": "^4.1.0",
"utf-8-validate": "^6.0.6"
}
}