forked from sara-ngo/UberClone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 945 Bytes
/
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
{
"name": "UberClone",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"test": "nodemon server.js",
"start": "node server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@mapbox/mapbox-gl-geocoder": "^5.0.0",
"@mui/material": "^5.6.3",
"axios": "^0.26.1",
"bcrypt": "^5.0.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.2",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"eventemitter3": "^4.0.7",
"express": "^4.17.3",
"joi": "^17.6.0",
"joi-password-complexity": "^5.1.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.2.11",
"socket.io": "^4.4.1",
"socket.io-client": "^4.5.0",
"uuid": "^8.3.2",
"validation": "^0.0.1"
},
"devDependencies": {
"nodemon": "^2.0.15"
},
"engines": {
"node": "14.x"
}
}