-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.42 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
48
49
50
51
52
53
{
"name": "auth.service",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon -L",
"lint": "eslint --ext .js -f ./node_modules/eslint-friendly-formatter . --fix",
"start": "node index.js",
"test": "jest && codecov",
"test:coverage": "jest --verbose --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ubademy-G3/auth.service.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Ubademy-G3/auth.service/issues"
},
"homepage": "https://github.com/Ubademy-G3/auth.service#readme",
"devDependencies": {
"codecov": "^3.8.3",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.2",
"husky": "^2.3.0",
"jest": "^27.2.4",
"mockingoose": "^2.15.2",
"mongodb-mock-server": "^2.0.1",
"nodemailer-mock": "^1.5.11",
"nodemon": "^2.0.14",
"supertest": "^6.1.6"
},
"dependencies": {
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^10.0.0",
"eslint-friendly-formatter": "^3.0.0",
"eslint-plugin-html": "^5.0.5",
"express": "^4.17.1",
"jsonschema": "^1.4.0",
"jsonwebtoken": "^8.5.1",
"mongodb-connection-string-url": "^2.1.0",
"mongoose": "^6.0.10",
"nodemailer": "^6.7.0",
"swagger-ui": "^2.2.10",
"swagger-ui-express": "^4.1.6",
"winston": "^3.3.3"
}
}