-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.54 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.54 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
{
"name": "hospient-api",
"version": "1.0.0",
"description": "API Hospient.com",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"test": "jest",
"build": "npm install",
"deploy": "bash deploy.sh",
"pm2:start": "pm2 start ecosystem.config.js --env production",
"pm2:stop": "pm2 stop hospient-api-live",
"pm2:restart": "pm2 restart hospient-api-live",
"pm2:logs": "pm2 logs hospient-api-live",
"pm2:test:start": "pm2 start ecosystem.config.js --only hospient-api-test",
"pm2:test:stop": "pm2 stop hospient-api-test",
"pm2:test:restart": "pm2 restart hospient-api-test",
"pm2:test:logs": "pm2 logs hospient-api-test",
"db:migrate": "npx sequelize-cli db:migrate",
"db:seed": "npx sequelize-cli db:seed:all",
"concierge:migrate": "node run-concierge-migration.js",
"postinstall": "echo 'Installation completed successfully'",
"vercel-build": "npm install"
},
"dependencies": {
"axios": "^1.10.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"csv-parser": "^3.2.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-rate-limit": "^6.11.2",
"express-validator": "^7.0.1",
"jsonwebtoken": "^9.0.0",
"multer": "^2.0.1",
"mysql2": "^3.6.5",
"sequelize": "^6.31.0",
"socket.io": "^4.8.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^4.6.2",
"ws": "^8.18.2"
},
"devDependencies": {
"jest": "^29.5.0",
"nodemon": "^2.0.22"
},
"engines": {
"node": ">=18.0.0"
}
}