-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.13 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
{
"name": "nodejs-javascript-helpdesk",
"version": "1.0.0",
"description": "Contains the backend implementation of a HelpDesk API",
"main": "app.js",
"scripts": {
"start": "npm start",
"test": "jasmine",
"test-coverage": "nyc jasmine",
"lint": "eslint .",
"dev": "nodemon src/app.js"
},
"keywords": [
"middleware pattern",
"RESTful API",
"Swagger",
"JWT Authentication",
"JavaScript",
"Jasmine"
],
"author": "geozi",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-validator": "^7.2.1",
"jsdoc": "^4.0.4",
"jsonwebtoken": "^9.0.2",
"mongoose": "^7.8.3",
"mongoose-unique-validator": "^4.0.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/jasmine": "^5.1.5",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.7",
"eslint": "^9.17.0",
"eslint-plugin-jasmine": "^4.2.2",
"globals": "^15.14.0",
"jasmine": "^5.5.0",
"nodemon": "^3.1.9",
"nyc": "^17.1.0"
}
}