-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 864 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 864 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
31
32
33
34
35
36
37
38
39
{
"name": "product-catalog-crud-api",
"version": "1.0.0",
"description": "CRUD based API to edit product catalog for an e-commerce company",
"main": "server.js",
"scripts": {
"test": "jest --testTimeout=10000",
"test:watch": "jest --watch"
},
"keywords": [
"Express",
"MongoDB",
"Mongoose",
"ProductCatalog"
],
"author": "Harshit",
"license": "MIT",
"bugs": {
"url": "https://github.com/harshit98/ECommerce-Product-Catalog/issues"
},
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"express-handlebars": "^3.1.0",
"mongoose": "^5.8.1",
"multer": "^1.4.2"
},
"devDependencies": {
"jest": "^24.9.0",
"supertest": "^4.0.2"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"verbose": true
}
}