-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.42 KB
/
package.json
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
{
"name": "base_expressjs",
"version": "1.0.0",
"description": "Base ExpressJS is a basic source code, using Express FrameWork",
"main": "src/main.js",
"scripts": {
"start": "nodemon",
"seed": "babel-node src/seeders",
"build": "del-cli build && babel src --out-dir build",
"lint": "eslint . --fix"
},
"author": "ZentSoft",
"license": "ISC",
"dependencies": {
"@babel/runtime": "^7.23.6",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"file-system-cache": "^2.4.4",
"helmet": "^7.1.0",
"joi": "^17.11.0",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"mime-types": "^2.1.35",
"moment": "^2.29.4",
"mongoose": "^8.0.3",
"multer": "^1.4.5-lts.1",
"node-cron": "^3.0.3",
"nodemailer": "^6.9.7",
"short-uuid": "^4.2.2",
"winston": "^3.11.0"
},
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.6",
"@babel/eslint-parser": "^7.23.3",
"@babel/eslint-plugin": "^7.23.5",
"@babel/node": "^7.22.19",
"@babel/plugin-transform-runtime": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"babel-plugin-module-resolver": "^5.0.0",
"del-cli": "^5.1.0",
"eslint": "^8.56.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.29.1",
"nodemon": "^3.0.2",
"prettier": "^3.1.1"
}
}