-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 922 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 922 Bytes
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
{
"name": "expressweb-api-app",
"version": "1.0.1",
"description": "The api application boilerplate for Expresswebjs",
"main": "app.js",
"scripts": {
"test": "jest",
"start": "nodemon app.js"
},
"author": "Lexigbokwe",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"expresswebcore": "^1.0.13",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.15",
"mysql": "^2.18.1",
"mysql2": "^2.2.5",
"socket.io": "^2.3.0",
"validatorjs": "^3.20.0"
},
"devDependencies": {
"jest": "^26.6.3",
"nodemon": "^2.0.4"
},
"jest": {
"moduleNameMapper": {
"@Dto/(.*)": "<rootDir>/DTO/$1",
"@RequestValidator/(.*)": "<rootDir>/App/Http/Request/$1",
"@service/(.*)": "<rootDir>/App/Service/$1",
"@Repository/(.*)": "<rootDir>/App/Repository/$1"
}
}
}