-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.74 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.74 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "auth-service",
"version": "1.0.0",
"description": "Handling Users and Authentication",
"main": "index.js",
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && npx tsc --project tsconfig.build.json",
"prestart": "npm run build",
"start": "node dist/index.js",
"dev_window": "set NODE_ENV=development && ts-node-dev --poll src/index.ts",
"dev_linux": "export NODE_ENV=development && ts-node-dev --poll src/index.ts",
"prepare": "husky install",
"prettier-format": "prettier --write .",
"lint": "eslint . --max-warnings 0 --report-unused-disable-directives",
"test": "jest --watchAll --no-cache",
"test:ci": "jest"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"setupFilesAfterEnv": [
"./src/test/setup.ts"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pro-Mentor/auth-service.git"
},
"author": "pro-mentor",
"license": "ISC",
"bugs": {
"url": "https://github.com/Pro-Mentor/auth-service/issues"
},
"homepage": "https://github.com/Pro-Mentor/auth-service#readme",
"dependencies": {
"@promentor-app/shared-lib": "^1.0.40",
"amqplib": "^0.10.3",
"axios": "^1.5.1",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"generate-password": "^1.7.1",
"helmet": "^7.0.0",
"mongoose": "^8.0.0",
"pg": "^8.11.3",
"typescript": "^5.1.6"
},
"devDependencies": {
"@types/amqplib": "^0.10.4",
"@types/cors": "^2.8.15",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.4",
"@types/node": "^20.5.6",
"@types/pg": "^8.10.9",
"@types/supertest": "^2.0.12",
"@types/swagger-jsdoc": "^6.0.2",
"@types/swagger-ui-express": "^4.1.5",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.48.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"jest": "^29.6.4",
"lint-staged": "^14.0.1",
"prettier": "^3.0.2",
"rimraf": "^5.0.1",
"supertest": "^6.3.3",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"ts-jest": "^29.1.1",
"ts-node-dev": "^2.0.0"
}
}