-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.65 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.65 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
84
85
86
87
88
89
90
91
{
"name": "nodejs-ts-api",
"version": "1.0.0",
"description": "A restful node express api",
"main": "./src/index.ts",
"scripts": {
"build:clean": "rimraf ./dist/",
"build:compile": "tsc",
"build": "run-s build:clean build:compile",
"build:openapi": "redocly bundle openapi/main/openapi.yaml -o openapi/dist/openapi.yaml",
"start": "node dist/index.js",
"dev": "tsc-watch --onSuccess \"node ./dist/index.js\"",
"docs:clean": "rimraf ./docs/code/",
"docs:compile": "typedoc --options typedoc.json",
"docs": "run-s docs:clean docs:compile",
"lint": "eslint \"src/**/*.ts\" --fix",
"pretty": "prettier --config .prettierrc 'src/**/*.ts' --write",
"format": "run-s pretty lint",
"prepare": "husky install",
"test": "jest --runInBand --detectOpenHandles"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --fix"
]
},
"author": "Samuel Umoh",
"license": "MIT",
"devDependencies": {
"@jest-mock/express": "^2.0.2",
"@types/bcrypt": "^5.0.0",
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.2",
"@types/jsonwebtoken": "^9.0.2",
"@types/module-alias": "^2.0.1",
"@types/morgan": "^1.9.4",
"@types/node": "^20.4.1",
"@types/nodemailer": "^6.4.8",
"@types/qrcode": "^1.5.1",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-tsdoc": "^0.2.17",
"husky": "^8.0.3",
"jest": "^29.6.1",
"lint-staged": "^14.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.0",
"rimraf": "^5.0.1",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsc-watch": "^6.0.4",
"tsconfig-paths": "^4.2.0",
"typedoc": "^0.24.8",
"typedoc-theme-hierarchy": "^4.1.0",
"typescript": "^5.1.6"
},
"dependencies": {
"@sendgrid/mail": "^7.7.0",
"bcrypt": "^5.1.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"envalid": "^7.3.1",
"express": "^4.18.2",
"helmet": "^7.0.0",
"hi-base32": "^0.5.1",
"joi": "^17.9.2",
"jsonwebtoken": "^9.0.1",
"module-alias": "^2.2.3",
"mongoose": "^7.3.2",
"morgan": "^1.10.0",
"otpauth": "^9.1.2",
"pino": "^8.14.1",
"pino-pretty": "^10.0.1",
"qrcode": "^1.5.3",
"rotating-file-stream": "^3.1.0"
},
"_moduleAliases": {
"@/resources": "dist/resources",
"@/utils": "dist/utils",
"@/middlewares": "dist/middlewares"
}
}