-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.51 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.51 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
{
"name": "cbt",
"version": "0.0.0",
"private": true,
"main": "app.js",
"type": "module",
"nodemonConfig": {
"ext": "js",
"ignore": [
"*.test.ts",
"../db*"
],
"delay": "2"
},
"scripts": {
"test": "jest",
"deploy": "NODE_ENV=production node app.js",
"dev": "nodemon app.js"
},
"dependencies": {
"@joi/date": "^2.1.0",
"bcrypt": "^5.1.0",
"body-parser": "^1.11.0",
"cloudinary": "^1.33.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-errors": "^2.0.0",
"fast-csv": "^4.3.6",
"googleapis": "^110.0.0",
"handlebars": "^4.7.8",
"helmet": "^6.0.0",
"jest": "^27.5.1",
"joi": "^17.6.2",
"joi-objectid": "^4.0.2",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"lodash-id": "^0.14.1",
"lowdb": "^5.0.5",
"moment": "^2.29.4",
"mongoose": "^6.8.1",
"mongoose-aggregate-paginate-v2": "^1.0.6",
"mongoose-paginate-v2": "^1.7.1",
"mongoose-unique-validator": "^3.1.0",
"multer": "^1.4.5-lts.1",
"mustache": "^4.2.0",
"nodemailer": "^6.9.1",
"tsc-watch": "^4.6.2",
"winston": "^3.8.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/mongoose-aggregate-paginate-v2": "^1.0.12",
"@types/mongoose-unique-validator": "^1.0.9",
"@types/multer": "^1.4.11",
"@types/nodemailer": "^6.4.15",
"nodemon": "^3.1.1"
}
}