-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.06 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
{
"name": "nodejs-javascript-warehouse-manager",
"version": "1.0.0",
"description": "Contains the backend implementation of a warehouse management API",
"main": "app.js",
"scripts": {
"start": "npm start",
"test": "jest",
"testWithCoverage": "jest --coverage",
"test:detect": "jest --detectOpenHandles",
"dev": "nodemon src/app.js",
"lint": "eslint ."
},
"keywords": [
"middleware pattern",
"RESTful API",
"JWT authentication",
"JavaScript",
"Jest"
],
"author": "geozi",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-validator": "^7.2.0",
"jsdoc": "^4.0.4",
"jsonwebtoken": "^9.0.2",
"mongoose": "^7.8.3",
"mongoose-unique-validator": "^4.0.1"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/jest": "^29.5.14",
"eslint": "^9.17.0",
"eslint-plugin-jest": "^28.9.0",
"globals": "^15.13.0",
"jest": "^29.7.0",
"mockingoose": "^2.16.2",
"nodemon": "^3.1.9",
"sinon": "^19.0.2"
}
}