-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.09 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
{
"name": "microservice-template-nodejs-js",
"version": "1.0.0",
"description": "A backend template made using Node.js, Express.js, and JavaScript for building REST API based microservices.",
"main": "main.js",
"type": "module",
"scripts": {
"start": "node src/main.js",
"dev": "nodemon src/main.js",
"test": "jest --config jest.config.cjs"
},
"keywords": [
"auth"
],
"author": "YourAKShaw",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"express": "^4.19.2",
"http-errors": "^2.0.0",
"joi": "^17.13.3",
"mongodb": "^6.8.0",
"node-emoji": "^2.1.3",
"winston": "^3.13.1"
},
"devDependencies": {
"@babel/core": "^7.24.9",
"@babel/preset-env": "^7.25.0",
"@eslint/js": "^9.6.0",
"@types/express": "^4.17.21",
"babel-jest": "^29.7.0",
"dotenv": "^16.4.5",
"eslint": "^9.6.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.6.0",
"globals": "^15.8.0",
"jest": "^29.7.0",
"nodemon": "^3.1.4",
"prettier": "^3.3.2",
"supertest": "^7.0.0"
}
}