-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.32 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
{
"name": "the-api-project",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=development nodemon index.js",
"dev": "cross-env NODE_ENV=development nodemon index.js",
"prod": "cross-env NODE_ENV=production nodemon index.js",
"pm2": "cross-env NODE_ENV=production pm2 start index.js --name aboutapi --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"colors": "^1.4.0",
"connect-session-sequelize": "^7.1.7",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.4.2",
"express": "^4.18.2",
"express-session": "^1.18.0",
"express-winston": "^4.2.0",
"https": "^1.0.0",
"image-size": "^1.1.1",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"mysql2": "^3.6.5",
"nodemailer": "^6.9.9",
"nodemon": "^3.0.2",
"pg": "^8.11.3",
"sequelize": "^6.35.2",
"tesseract.js": "^5.0.4",
"uuid": "^9.0.1",
"validator": "^13.11.0",
"winston": "^3.11.0",
"winston-daily-rotate-file": "^4.7.1",
"winston-transport": "^4.6.0"
},
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"sequelize-cli": "^6.6.2"
}
}