-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.2 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
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"ffvb": "node src/scripts/scraping.js",
"lint": "eslint src/**/*.js",
"lint:fix": "eslint src/**/*.js --fix",
"format": "prettier --write \"src/**/*.js\"",
"prepare-commit": "npm run format && npm run lint:fix",
"test": "echo \"Error: no test specified\" && exit 0",
"prepare": "husky install"
},
"dependencies": {
"bcrypt": "^6.0.0",
"chalk": "^5.6.2",
"cheerio": "^1.2.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"jsonwebtoken": "^9.0.3",
"lodash.merge": "^4.6.2",
"mongodb": "^7.1.1",
"mongoose": "^9.1.5",
"multer": "^2.1.1",
"nodemailer": "^8.0.4",
"puppeteer": "^24.37.1"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"eslint": "^10.0.1",
"globals": "^17.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"nodemon": "^3.1.11",
"prettier": "^3.8.1"
},
"lint-staged": {
"src/**/*.js": [
"prettier --write",
"eslint --fix",
"git add"
]
}
}