-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 875 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
29
30
31
32
33
34
35
{
"name": "product-stock-api",
"version": "1.0.0",
"description": "Managing product inventory that requires adding products to a product catalog and adding warehouses to store the products.",
"main": "app.js",
"scripts": {
"start": "tsc && sls offline start",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"API",
"JWT",
"CRUD",
"AUTH",
"Serverless"
],
"author": "Md Rijwan Razzaq Matin",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.28",
"morgan": "^1.10.0",
"serverless-http": "^2.5.0",
"serverless-offline": "^6.5.0"
},
"devDependencies": {
"@types/express": "^4.17.7",
"@types/node": "^14.0.27",
"nodemon": "^2.0.4",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
}
}