-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.88 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
{
"name": "sevayu_backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint-check": "(eslint . --fix) && echo \"Linting checks completed successfully.\"",
"start": "nodemon ./src/app.js",
"test": "(mocha ./test/hospital_test_flow.js --timeout 20000) && (node ./test/test_report.js --timeout 2000)",
"app": "npm-run-all -p melisearch app"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ykumar1415/Sevayu_backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Ykumar1415/Sevayu_backend/issues"
},
"homepage": "https://github.com/Ykumar1415/Sevayu_backend#readme",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"axios": "^1.4.0",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0",
"express": "^4.18.2",
"firebase-admin": "^11.9.0",
"helmet": "^6.0.1",
"hpp": "^0.2.3",
"ioredis": "^5.3.2",
"jsonwebtoken": "^9.0.0",
"meilisearch": "^0.31.1",
"mongoose": "^7.0.2",
"morgan": "^1.10.0",
"nodemon": "^2.0.22",
"redis": "^4.6.7",
"socket.io": "^4.7.1",
"winston": "^3.10.0",
"xss-clean": "^0.1.1"
},
"eslintConfig": {
"globals": {
"describe": "readonly",
"it": "readonly",
"before": "readonly",
"after": "readonly",
"beforeEach": "readonly",
"afterEach": "readonly",
"expect": "readonly",
"request": "readonly"
}
},
"devDependencies": {
"chai": "^4.3.7",
"chai-http": "^4.4.0",
"concurrently": "^8.2.0",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"sinon": "^15.2.0",
"supertest": "^6.3.3"
}
}