-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 933 Bytes
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 933 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
40
41
42
43
{
"name": "devcircle-bend",
"version": "1.0.0",
"description": "group project",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"dev": "nodemon ./src",
"start": "node ./src/index.js"
},
"jest": {
"testEnvironment": "node"
},
"engines": {
"node": "14.15.3",
"npm": "6.14.9"
},
"author": "Group 3",
"license": "ISC",
"type": "module",
"dependencies": {
"@babel/preset-env": "^7.14.8",
"bcrypt": "^5.0.1",
"cloudinary": "^1.26.3",
"cors": "^2.8.5",
"datauri": "^3.0.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongodb-memory-server-core": "^7.3.4",
"mongoose": "^5.13.3",
"multer": "^1.4.2",
"pg": "^8.6.0",
"socket.io": "^4.1.3",
"validator": "^13.6.0"
},
"devDependencies": {
"jest": "^27.0.6",
"nodemon": "^2.0.12",
"supertest": "^6.1.4"
}
}