-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.89 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.89 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "wallet_app",
"version": "1.0.0",
"description": "",
"main": "build/app.js",
"scripts": {
"start": "node build/app.js",
"dev": "nodemon src/app.ts",
"build": "tsc -p .",
"test": "jest --detectOpenHandles",
"test:cover": "jest --coverage"
},
"keywords": [],
"author": "Nahid Hasan",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^20.2.5",
"concurrently": "^8.0.1",
"jest": "~27.0.6",
"nodemon": "^2.0.22",
"supertest": "~6.1.3",
"ts-node-dev": "^2.0.0",
"tsc": "^2.0.4",
"typescript": "^5.0.4"
},
"dependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/multer": "^1.4.7",
"@types/node": "^20.2.5",
"axios": "~0.21.1",
"bcrypt": "5.0.0",
"cloudinary": "^1.37.0",
"cookie-parser": "^1.4.6",
"cors": "~2.8.5",
"dayjs": "~1.10.7",
"debug": "~2.6.9",
"dotenv": "^16.0.3",
"ejs": "~3.1.6",
"express": "^4.18.2",
"express-list-endpoints": "~5.0.0",
"express-rate-limit": "~5.2.6",
"extract-zip": "~2.0.1",
"joi": "~17.3.0",
"jsonwebtoken": "^9.0.0",
"mongoose": "^6.11.1",
"mongoose-id-validator": "~0.6.0",
"mongoose-paginate-v2": "~1.3.12",
"mongoose-sequence": "~5.3.1",
"mongoose-typescript": "^2.4.0",
"mongoose-unique-validator": "~3.0.0",
"morgan": "~1.9.1",
"multer": "^1.4.5-lts.1",
"nodemailer": "~6.7.2",
"passport": "^0.6.0",
"passport-jwt": "~4.0.0",
"postman-to-openapi": "~2.2.0 ",
"sharp": "^0.32.1",
"swagger-ui-express": "~4.3.0",
"tsc": "^2.0.4",
"typescript": "^5.0.4",
"uuid": "~8.3.2",
"yamljs": "~0.3.0"
}
}