-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.21 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
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"start:prod": "NODE_ENV=prod pm2 start dist/app.js",
"start:test": "node dist/app.js",
"postinstall": "rm -r dist/* && tsc ",
"ts:dev": "nodemon app.ts",
"js:dev": "nodemon dist/app.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/express-fileupload": "^1.4.1",
"@types/jsonwebtoken": "^9.0.2",
"@types/markdown-it": "^13.0.0",
"@types/morgan": "^1.9.4",
"@types/node-cron": "^3.0.8",
"@types/nodemailer": "^6.4.9",
"cloudinary": "^1.40.0",
"nodemon": "^2.0.22",
"sharp": "^0.32.5",
"ts-node": "^10.9.1"
},
"dependencies": {
"axios": "^1.5.0",
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"helmet": "^7.0.0",
"https": "^1.0.0",
"jsonwebtoken": "^9.0.0",
"markdown-it": "^13.0.1",
"mongoose": "^7.3.1",
"morgan": "^1.10.0",
"nanoid": "^3.3.6",
"node-cron": "^3.0.2",
"nodemailer": "^6.9.4",
"stripe": "^12.10.0",
"typescript": "^5.1.3"
},
"overrides": {
"semver": "^7.5.3"
}
}