-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.45 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
{
"name": "be_event_management",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "20.11.1"
},
"scripts": {
"lint": "eslint src --ext js --report-unused-disable-directives --max-warnings 0",
"clean": "rm -rf build && mkdir build",
"build-babel": "babel ./src -d ./build/src",
"build": "npm run clean && npm run build-babel",
"production": "npm run build && cross-env BUILD_MODE=production node ./build/src/server.js",
"dev": "cross-env BUILD_MODE=dev nodemon --exec babel-node ./src/server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/runtime": "^7.24.0",
"async-exit-hook": "^2.0.1",
"bcrypt": "^5.1.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"express": "^4.18.3",
"http-status-codes": "^2.3.0",
"ioredis": "^5.3.2",
"joi": "^17.12.2",
"jsonwebtoken": "^9.0.2",
"mailgen": "^2.0.28",
"mongoose": "^8.2.1",
"morgan": "^1.10.0",
"nodemailer": "^6.9.12",
"nodemon": "^3.1.0",
"otp-generator": "^4.0.1",
"redis": "^4.6.13"
},
"devDependencies": {
"@babel/cli": "^7.23.9",
"@babel/core": "^7.24.0",
"@babel/eslint-parser": "^7.23.10",
"@babel/node": "^7.23.9",
"@babel/plugin-transform-runtime": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"babel-plugin-module-resolver": "^5.0.0",
"eslint": "^8.57.0"
}
}