-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.36 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
{
"name": "bankapp",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"prestart": "yarn build",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node dist/index.js",
"predev": "yarn build",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\"",
"build": "concurrently \"rimraf dist\" \"npx tsc\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/mongoose": "^5.11.97",
"bcrypt": "^5.1.0",
"cloudinary": "^1.37.3",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-handlebars": "^7.0.7",
"express-rate-limit": "^6.7.0",
"http-status-codes": "^2.2.0",
"jsonwebtoken": "^9.0.1",
"moment": "^2.29.4",
"mongoose": "^7.3.1",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.3",
"uuid": "^9.0.0",
"winston": "^3.9.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"@types/morgan": "^1.9.4",
"@types/multer": "^1.4.7",
"@types/node": "^20.3.1",
"@types/nodemailer": "^6.4.8",
"@types/uuid": "^9.0.2",
"concurrently": "^8.2.0",
"nodemon": "^2.0.22",
"rimraf": "^5.0.1",
"typescript": "^5.1.3"
}
}