-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.88 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.88 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
62
63
64
65
66
67
68
{
"name": "node-api-postgres",
"version": "1.0.0",
"description": "RESTful API with Node.js, Express, and PostgreSQL",
"main": "index.js",
"license": "MIT",
"dependencies": {
"@sendgrid/mail": "^8.1.5",
"bcryptjs": "^2.4.3",
"chai-http": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-async-errors": "^3.1.1",
"express-rate-limit": "^7.4.1",
"express-rate-limit-redis": "^0.0.4",
"helmet": "^8.0.0",
"jest": "^29.7.0",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"nodemailer": "^8.0.1",
"pg": "^8.12.0",
"prom-client": "^15.1.3",
"redis": "^4.7.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"winston": "^3.15.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-transform-modules-commonjs": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/register": "^7.25.9",
"@eslint/js": "^10.0.1",
"chai": "^4.3.6",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.3.0",
"mocha": "^10.8.2",
"nyc": "^17.1.0",
"prettier": "^3.8.1",
"supertest": "^7.0.0"
},
"nyc": {
"require": [
"@babel/register"
],
"extension": [
".js",
".mjs"
],
"include": [
"src/**/*.js",
"src/**/*.mjs"
],
"exclude": [
"test/**/*.test.js",
"node_modules"
]
},
"scripts": {
"test": "NODE_ENV=test DEBUG=module:* nyc mocha --require @babel/register",
"start": "node index.js",
"dev": "nodemon index.js"
}
}