-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
28 lines (28 loc) · 859 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
{
"name": "weblog-api",
"version": "1.0.0",
"description": "A blogging-API built in partial fulfilment of the Altschool of Engineering focused in Backend Engineering (NodeJS) Second Semester Requirement by Samson Okeji, a Backend Engineering student at AltSchool Africa.",
"main": "app.js",
"scripts": {
"test": "NODE_ENV=test jest --detectOpenHandles --coverage",
"start": "NODE_ENV=production node server.js",
"dev": "NODE_ENV=development nodemon server.js"
},
"keywords": [],
"author": "Samson Okeji",
"license": "ISC",
"devDependencies": {
"eslint": "^8.26.0",
"jest": "^29.2.2",
"nodemon": "^2.0.20",
"supertest": "^6.3.1"
},
"dependencies": {
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.7.0"
}
}