-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.24 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.24 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
{
"name": "com.smartinfologiks.api2",
"title": "SmartinfoLogiks API Framework",
"version": "1.0.0",
"description": "A mordern NodeJS framework for simplifying and accelerating NodeJS development and adding low code features.",
"main": "index.js",
"scripts": {
"compile": "clear;npx tsc;",
"start": "clear;node index.js",
"deploy": "npm install && pm2 reload ecosystem.config.js",
"deploy_production": "npm install && pm2 reload ecosystem.config.js --env production",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SmartinfoLogiks/Framework-NodeJS.git"
},
"keywords": [
"API",
"Server"
],
"author": "Bismay <bismay@smartinfologiks.com>",
"license": "MIT",
"homepage": "https://github.com/SmartinfoLogiks/Framework-NodeJS#readme",
"dependencies": {
"axios": "^0.21.2",
"body-parser": "^2.2.1",
"compression": "^1.8.1",
"crypto": "^1.0.1",
"dotenv": "^16.0.3",
"express": "^5.2.1",
"express-basic-auth": "^1.2.1",
"express-rate-limit": "^8.3.1",
"express-useragent": "^2.0.2",
"express-winston": "^4.2.0",
"glob": "^13.0.0",
"helmet": "^8.1.0",
"ioredis": "^4.30.1",
"js-base64": "^3.6.0",
"js-sha512": "^0.8.0",
"jsonwebtoken": "^8.4.0",
"lodash": "^4.17.21",
"md5": "^2.3.0",
"moment": "^2.22.2",
"mongoose": "^5.13.3",
"mongoose-autopopulate": "^0.12.2",
"mongoose-plugin-autoinc": "^1.1.9",
"mongoose-string-query": "^0.2.5",
"mongoose-timestamp": "^0.6.0",
"morgan": "^1.10.1",
"multer": "^2.0.2",
"mysql": "github:mysqljs/mysql",
"mysql2": "^3.9.2",
"node-cron": "^3.0.3",
"nodemailer": "^6.6.3",
"path-to-regexp": "^1.8.0",
"redlock": "^5.0.0-beta.2",
"rotating-file-stream": "^1.3.9",
"sha1": "^1.1.1",
"uuid": "^8.3.1",
"validatorjs": "^3.20.0",
"winston": "^3.18.3",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"typescript": "^5.0.4"
}
}