-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathpackage.json
38 lines (38 loc) · 947 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
36
37
38
{
"name": "company-products-api",
"version": "0.0.2",
"description": "A Company REST API with authentication and authorization",
"main": "src/index.js",
"type": "module",
"scripts": {
"dev": "nodemon src/index.js",
"start": "node src/index.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FaztWeb/company-products-api.git"
},
"keywords": [],
"author": "Fazt",
"license": "ISC",
"bugs": {
"url": "https://github.com/FaztWeb/company-products-api/issues"
},
"homepage": "https://github.com/FaztWeb/company-products-api#readme",
"devDependencies": {
"jest": "^28.1.3",
"nodemon": "^2.0.19",
"supertest": "^6.2.4"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"helmet": "^5.1.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.5.0",
"morgan": "^1.10.0"
}
}