-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.66 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
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "simple-express-mongo",
"version": "1.0.0",
"description": "A starter project for Node.js with Express.js and MongoDB",
"keywords": [
"nodejs",
"expressjs",
"mongodb",
"boilerplate",
"starter-template"
],
"author": "PhuPT",
"license": "MIT",
"main": "server.js",
"type": "module",
"scripts": {
"prepare": "npx husky",
"dev": "nodemon",
"start": "node --env-file=.env server.js",
"test": "NODE_ENV=test node --env-file=.env.test --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js",
"test:cov": "npm test -- --coverage",
"lint": "eslint src/ tests/",
"lint:fix": "eslint --fix src/ tests/",
"prettier": "prettier --check src/ tests/",
"prettier:fix": "prettier --write src/ tests/"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.3",
"ejs": "^3.1.10",
"express": "^4.21.0",
"express-rate-limit": "^7.5.0",
"helmet": "^8.0.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.9.1",
"multer": "^1.4.5-lts.1",
"winston": "^3.17.0",
"winston-daily-rotate-file": "^5.0.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.3.0",
"mongodb-memory-server": "^10.1.3",
"nodemon": "^3.1.7",
"prettier": "3.4.2",
"supertest": "^7.0.0"
},
"lint-staged": {
"*.{js,json}": [
"npm run lint",
"npm run prettier:fix"
]
},
"engines": {
"node": ">=22.12.0"
}
}