-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 825 Bytes
/
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
{
"name": "bus-ticket-manager-backend",
"version": "0.0.0",
"private": true,
"main": "app.js",
"type": "module",
"scripts": {
"start": "node -r dotenv/config app.js dotenv_config_path=./.env.production",
"dev": "npx nodemon -r dotenv/config app.js dotenv_config_path=./.env.development"
},
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"dotenv": "^16.4.4",
"nodemon": "^3.0.3"
},
"dependencies": {
"axios": "^1.6.7",
"bcrypt": "^5.1.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"express": "^4.18.2",
"fs": "^0.0.1-security",
"http": "^0.0.1-security",
"http-errors": "^2.0.0",
"jsonwebtoken": "^9.0.2",
"mariadb": "^3.2.3",
"morgan": "^1.10.0",
"nodemailer": "^6.9.9",
"path": "^0.12.7",
"uuid": "^9.0.1"
}
}