-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 840 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 840 Bytes
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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start:dev": "nodemon index.js",
"start": "node index.js",
"test": "jest"
},
"engines": {
"node": "14.x"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@supabase/storage-js": "^1.4.0",
"@supabase/supabase-js": "^1.21.0",
"bcryptjs": "^2.4.3",
"bson": "^4.6.2",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-fileupload": "^1.2.1",
"http-errors": "^1.8.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.12.4",
"multer": "^1.4.2",
"socket.io": "^4.0.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@faker-js/faker": "^6.0.0",
"jest": "^27.0.6",
"nodemon": "^2.0.13",
"supertest": "^6.1.4"
}
}