-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) Β· 1.26 KB
/
package.json
File metadata and controls
51 lines (51 loc) Β· 1.26 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
{
"name": "expressjs-template",
"version": "2.0.0",
"description": "Enterprise-grade Express.js template with authentication, testing, logging, and API documentation.",
"main": "src/server.js",
"scripts": {
"start": "node src/server.js",
"dev": "nodemon src/server.js",
"test": "cross-env NODE_ENV=test jest --runInBand"
},
"keywords": [
"express",
"api",
"template",
"enterprise",
"starter"
],
"author": "Vecto. (Tim Hauke)",
"license": "MIT",
"dependencies": {
"compression": "^1.7.4",
"connect-mongo": "^5.1.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"csurf": "^1.11.0",
"dayjs": "^1.11.11",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express": "^4.19.2",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^6.10.0",
"express-session": "^1.17.3",
"helmet": "^7.1.0",
"hpp": "^0.2.3",
"http-status": "^1.6.2",
"joi": "^17.12.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.4.0",
"morgan": "^1.10.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"winston": "^3.13.0",
"xss-clean": "^0.1.1"
},
"devDependencies": {
"cross-env": "^7.0.3",
"jest": "^29.7.0",
"nodemon": "^3.1.0",
"supertest": "^6.3.4"
}
}