-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.5 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.5 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "digital-market-place-updates",
"version": "1.0.0",
"description": "to sell products and services",
"main": "index.js",
"license": "ISC",
"engines": {
"node": ">=22"
},
"author": {
"name": "avom brice ",
"address": "frckbrice <bricefrkc@gmail,com> (https://maebrieporfolio.vercel.app)",
"date": "jun 12 2024",
"update": "feb 09 2026"
},
"scripts": {
"start": "node index.js",
"build": "echo 'No build step'",
"dev": "nodemon index.js",
"lint": "eslint . --ext .js",
"format": "prettier --write .",
"prepare": "husky install",
"test": "jest --runInBand --detectOpenHandles"
},
"dependencies": {
"bcryptjs": "^3.0.2",
"cors": "^2.8.5",
"cuid": "^3.0.0",
"date-fns": "^3.6.0",
"dotenv": "^16.4.5",
"express": "4",
"express-async-handler": "^1.2.0",
"express-rate-limit": "^7.3.1",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.7.0",
"nodemailer": "^6.9.14",
"nodemon": "^3.1.3",
"sanitize-html": "^2.13.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"uuid": "^10.0.0",
"cookie-parser": "^1.4.6"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/supertest": "^6.0.3",
"eslint": "^8.0.0",
"husky": "^8.0.0",
"jest": "^30.0.5",
"lint-staged": "^15.0.0",
"prettier": "^3.0.0",
"supertest": "^7.1.3"
},
"jest": {
"testEnvironment": "node",
"setupFilesAfterEnv": [],
"testMatch": [
"**/tests/**/*.test.js"
]
}
}