-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
48 lines (48 loc) · 1.2 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
{
"name": "airbnb-backend",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "mocha",
"start": "nodemon --ignore \"./data\" server.ts",
"dev": "nodemon --ignore \"./data\" server.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oferGavrilov/AirBNB-backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/oferGavrilov/AirBNB-backend/issues"
},
"homepage": "https://github.com/oferGavrilov/AirBNB-backend#readme",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/compression": "^1.7.2",
"@types/cookie-parser": "^1.4.3",
"@types/cryptr": "^4.0.1",
"@types/express": "^4.17.17",
"@types/node": "^18.16.18",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"request": "^2.88.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"async_hooks": "^1.0.0",
"axios": "^1.3.4",
"bcrypt": "^5.1.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cryptr": "^6.2.0",
"express": "^4.18.2",
"mongodb": "^5.6.0",
"nodemon": "^2.0.21",
"socket.io": "^4.6.1"
}
}