-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.42 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "brints-estate-backend",
"packageManager": "[email protected]",
"main": "dist/server.js",
"license": "MIT",
"private": true,
"scripts": {
"build": "yarn tsc",
"dev": "ts-node src/server.ts",
"lint": "yarn eslint --ext js,ts src",
"start": "node dist/server.js",
"test": "yarn build && yarn jest",
"watch": "yarn concurrently --names 'TS,JEST' -c 'blue,green' 'yarn watch-build' 'yarn watch-tests'",
"watch-server": "nodemon --exec ts-node src/server.ts"
},
"volta": {
"node": "20.10.0",
"yarn": "4.2.2"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.7",
"@babel/preset-typescript": "^7.23.3",
"@types/babel__core": "^7",
"@types/babel__preset-env": "^7",
"@types/bcryptjs": "^2",
"@types/cors": "^2",
"@types/eslint": "^8",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/jsonwebtoken": "^9",
"@types/lodash": "^4",
"@types/morgan": "^1",
"@types/multer": "^1",
"@types/node": "^20.10.6",
"@types/nodemailer": "^6",
"@types/nodemailer-mailgun-transport": "^1.4.6",
"@types/paystack": "^2.0.4",
"@types/redis": "^4.0.11",
"@types/supertest": "^6",
"@types/swagger-jsdoc": "^6",
"@types/swagger-ui-express": "^4.1.6",
"@types/twilio": "^3.19.3",
"@types/yamljs": "^0",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"concurrently": "^8.2.2",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"mongodb-memory-server": "^9.1.5",
"nodemon": "^3.0.2",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cloudinary": "^1.41.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-openapi-validator": "^5.2.0",
"express-validator": "^7.0.1",
"helmet": "^7.1.0",
"http-status-codes": "^2.3.0",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"mongoose": "^8.0.3",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"multer-storage-cloudinary": "^4.0.0",
"nodemailer": "^6.9.8",
"nodemailer-mailgun-transport": "^2.1.5",
"paystack": "^2.0.1",
"paystack-sdk": "^2.5.13",
"redis": "^4.6.13",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"twilio": "^5.0.4",
"yamljs": "^0.3.0"
}
}