-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.27 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "api.mybrand",
"version": "1.0.0",
"description": "api for myBrand app",
"main": "server.js",
"type": "module",
"scripts": {
"start": "node src/server.js",
"dev": "nodemon src/server.js",
"test": "jest"
},
"author": "Patrick",
"license": "MIT",
"dependencies": {
"axios": "^1.3.4",
"bcrypt": "^5.1.0",
"body-parser": "^1.20.2",
"cloudinary": "^1.35.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"jsonwebtoken": "^9.0.0",
"mongodb": "^4.17.2",
"mongoose": "^6.12.6",
"multer": "^1.4.5-lts.1",
"multer-storage-cloudinary": "^4.0.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^4.6.2",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"babel": "^6.23.0",
"jest": "^29.5.0",
"nodemon": "^3.1.0",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/madebypatrick/api.myBrand.git"
},
"bugs": {
"url": "https://github.com/madebypatrick/api.myBrand/issues"
},
"homepage": "https://github.com/madebypatrick/api.myBrand#readme"
}