-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.19 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
{
"name": "bookerapi",
"version": "1.0.0",
"description": "REST API and Websocket server for Booker Application that works for hospital appointment booking.",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon main.ts",
"start": "ts-node main.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MusaKavak/BookerAPI.git"
},
"author": "Musa Kavak",
"license": "ISC",
"bugs": {
"url": "https://github.com/MusaKavak/BookerAPI/issues"
},
"homepage": "https://github.com/MusaKavak/BookerAPI#readme",
"dependencies": {
"@supabase/supabase-js": "^2.2.2",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"redis": "^4.5.1",
"reflect-metadata": "^0.1.13",
"swagger-jsdoc": "^6.2.7",
"swagger-ui-express": "^4.6.0",
"tsyringe": "^4.7.0"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.15",
"@types/node": "^18.11.18",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.1",
"typescript": "^4.9.4"
}
}