forked from 100xdevs-cohort-3/week-8-course-selling-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
20 lines (20 loc) · 1 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "week-8-course-selling-app",
"version": "1.0.0",
"description": "- Initialize a new Node.js project - Add Express, jsonwebtoken to it as a dependency - Create index.js - Add route skeleton for user login, signup, purchase a course, see course - Add routes for admin login, admin signup, create a course, delete a course, add course content. - Add middlewares for user and admin auth - Add a database (mongodb), use dotenv to store the database connection string - Define the schema for User, Admin, Course, Purchase - Complete the routes for user login, signup, purchase a course, see course (Extra points - Use express routing to better structure your routes) - Create the frontend",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"dotenv": "^16.4.5",
"express": "^4.21.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.6.3",
"nodemon": "^3.1.7"
}
}