-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 779 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 779 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
{
"name": "wiitify-backend",
"version": "1.0.0",
"description": "An api for the app connecting the buyers and sellers to talk how to sell about their product",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js"
},
"author": "Blaise NDIZEYE",
"license": "ISC",
"dependencies": {
"apollo-server-core": "^3.10.1",
"apollo-server-errors": "^3.3.1",
"apollo-server-express": "^3.10.1",
"axios": "^1.3.4",
"bcryptjs": "^2.4.3",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"graphql": "^16.5.0",
"graphql-upload": "13.0.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.5.2",
"nodemailer": "^6.8.0",
"yup": "^0.32.11"
},
"devDependencies": {
"nodemon": "^2.0.20"
}
}