-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.72 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "nodejs_auth-api",
"version": "1.3.0",
"description": "A backend authentication & authorization project to handle the scale and complexity of an application. It is design while keeping the different environments in the mind.",
"main": "index.js",
"scripts": {
"start": "npm run build && npm run serve",
"serve": "node -r dotenv/config build/server.js",
"build": "npm run clean && npm run build-ts",
"watch": "npx concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold,red.bold\" \"npm run watch-ts\" \"npm run watch-node\"",
"watch-node": "nodemon -r dotenv/config build/server.js",
"clean": "npx rimraf ./build",
"build-ts": "npx tsc --project tsconfig.prod.json",
"watch-ts": "npx tsc -w",
"lint": "npx eslint . --ext ts --report-unused-disable-directives --max-warnings 0",
"lint:fix": "npm run lint --fix",
"format": "npx prettier \"**/*.+(json|ts|tsx|js)\" --write",
"test": "npx jest --forceExit --detectOpenHandles --coverage --verbose",
"install:packages": "npm i",
"upgrade:packages": "npm update --save-dev && npm update --save",
"audit": "npm audit --audit-level=high",
"audit:fix": "npm audit fix --force"
},
"dependencies": {
"bcrypt": "^5.1.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"csurf": "^1.11.0",
"express": "^4.21.0",
"express-async-handler": "^1.2.0",
"express-rate-limit": "^6.11.2",
"helmet": "^6.0.0",
"joi": "^17.7.0",
"jsonwebtoken": "^9.0.1",
"mongoose": "^7.4.3",
"nodemailer": "^6.9.5",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"winston": "^3.10.0",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.14",
"@types/jest": "^29.5.3",
"@types/joi": "^17.2.3",
"@types/jsonwebtoken": "^8.5.9",
"@types/morgan": "^1.9.4",
"@types/node": "^18.11.13",
"@types/nodemailer": "^6.4.11",
"@types/request": "^2.48.8",
"@types/supertest": "^2.0.12",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.7",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"colors": "^1.4.0",
"concurrently": "^8.2.1",
"dotenv": "^16.3.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.6.2",
"nodemon": "^3.1.7",
"prettier": "^3.4.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"author": "Abhishek SAINI",
"license": "ISC"
}