-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 2.11 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 2.11 KB
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
{
"name": "californium",
"version": "1.0.0",
"description": "- In this project we will work feature wise. That means we pick one object like user, book, blog, etc at a time. We work through it's feature. The steps would be:\r 1) We create it's model.\r 2) We build it's APIs.\r 3) We test these APIs.\r 4) We deploy these APIs.\r 5) We integrate these APIs with frontend.\r 6) We will repeat steps from Step 1 to Step 5 for each feature in this project.\r - This project is divided into 4 features namely User, Product, Cart and Order. You need to work on a single feature at a time. Once that is completed as per above mentioned steps. You will be instructed to move to next Feature.\r - In this project we are changing how we send token with a request. Instead of using a custom header key like x-api-key, you need to use Authorization header and send the JWT token as Bearer token.\r - Create a group database `groupXDatabase`. You can clean the db you previously used and resue that.\r - This time each group should have a *single git branch*. Coordinate amongst yourselves by ensuring every next person pulls the code last pushed by a team mate. You branch will be checked as part of the demo. Branch name should follow the naming convention `project/productsManagementGroupX`\r - Follow the naming conventions exactly as instructed.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon src/index.js",
"start": "nodemon src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/divyaGrvgithub/californium.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/divyaGrvgithub/californium/issues"
},
"homepage": "https://github.com/divyaGrvgithub/californium#readme",
"dependencies": {
"aws-sdk": "^2.1306.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"joi": "^17.7.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.9.0",
"multer": "^1.4.5-lts.1",
"nodemon": "^2.0.20",
"pincode-validator": "^1.0.3"
}
}