-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.52 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
53
54
{
"name": "back-end",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon --exec babel-node index.js",
"start:prod": "npx pm2 start npm --name back-end -- start > /dev/null 2>&1",
"stop:prod": "npx pm2 stop back-end > /dev/null 2>&1",
"reboot": "npx pm2 stop back-end > /dev/null 2>&1 && npx pm2 start npm --name back-end -- start > /dev/null 2>&1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UMC-README/back-end.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/UMC-README/back-end/issues"
},
"homepage": "https://github.com/UMC-README/back-end#readme",
"dependencies": {
"aws-sdk": "^2.1661.0",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-async-handler": "^1.2.0",
"http-status-codes": "^2.3.0",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"multer-s3": "^2.10.0",
"mysql2": "^3.10.3",
"node-cron": "^3.0.3",
"node-schedule": "^2.1.1",
"nodemailer": "^6.9.14",
"pm2": "^5.4.2",
"uuid": "^10.0.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.24.9",
"@babel/node": "^7.24.8",
"@babel/preset-env": "^7.24.8",
"nodemon": "^3.1.4",
"swagger-cli": "^4.0.4",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
}
}