-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.99 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
{
"name": "CareSync",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"lint": "eslint .",
"check-lint": "eslint [0-9]*.ts",
"start": "bun index.ts",
"dev": "nodemon index.ts",
"test": "jest",
"full-test": "eslint */[0-9]*.ts && jest --watchAll --verbose",
"full-test-fix": "eslint */[0-9]*.ts --fix && jest --watchAll --verbose"
},
"proxy": true,
"keywords": [],
"author": "Adedoyin Emmanuel Adeniyi",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/node": "^7.8.0",
"@babel/preset-env": "^7.6.0",
"@types/config": "^3.3.1",
"@types/express": "^4.17.18",
"@types/lodash": "^4.14.199",
"@types/multer": "^1.4.8",
"@types/node": "^20.7.1",
"eslint": "^6.4.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.17.0",
"nodemon": "^3.0.1",
"typescript": "^5.2.2"
},
"engines": {
"node": "18.18.0"
},
"dependencies": {
"@types/bcryptjs": "^2.4.4",
"@types/cookie-parser": "^1.4.4",
"@types/cors": "^2.8.14",
"@types/express-slow-down": "^1.3.3",
"@types/file-type": "^10.9.1",
"@types/jsonwebtoken": "^9.0.3",
"@types/morgan": "^1.9.6",
"@types/nodemailer": "^6.4.11",
"@types/socket.io": "^3.0.2",
"@types/uuid": "^9.0.5",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"build": "^0.1.4",
"config": "^3.3.9",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.21.1",
"express-async-errors": "^3.1.1",
"express-rate-limit": "^7.0.2",
"express-slow-down": "^1.6.0",
"joi": "^17.10.2",
"jsonwebtoken": "^9.0.2",
"livekit-server-sdk": "^2.0.0",
"lodash": "^4.17.21",
"mongoose": "^8.1.1",
"morgan": "^1.10.0",
"nodemailer": "^6.9.6",
"openai": "^4.27.0",
"rimraf": "^5.0.5",
"socket.io": "^4.7.2",
"ts-node": "^10.9.1",
"uuid": "^9.0.1"
}
}