-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy pathpackage.json
114 lines (114 loc) · 3.79 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "hng_boilerplate_expressjs",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start:dev": "ts-node-dev --respawn --transpile-only ./src/index",
"start": "ts-node --transpile-only src/index.ts",
"test": "jest --forceExit",
"test:email": "jest views/email/tests",
"test:organisation": "jest organisation.spec.ts",
"typeorm": "typeorm-ts-node-commonjs",
"build": "tsc",
"seed": "ts-node src/seeder.ts",
"prod": "node build/index.js",
"migrate": "typeorm-ts-node-commonjs migration:run -d src/data-source",
"migration:create": "typeorm-ts-node-commonjs migration:create db/migrations/migration",
"migration:generate": "typeorm-ts-node-commonjs migration:generate db/migrations/migration -d src/data-source",
"reset-db": "typeorm-ts-node-commonjs schema:drop -d src/data-source && typeorm-ts-node-commonjs schema:sync -d src/data-source",
"migration:revert": "typeorm-ts-node-commonjs migration:revert -d src/data-source",
"prepare": "husky",
"commitlint": "commitlint --edit",
"check-format": "prettier --check .",
"check-lint": "eslint . --ext ts --ext tsx --ext js"
},
"repository": "https://github.com/hngprojects/hng_boilerplate_expressjs",
"author": "StarmannRassy <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/hngprojects/hng_boilerplate_expressjs/issues"
},
"devDependencies": {
"@commitlint/config-conventional": "^19.2.2",
"@types/express": "^4.17.21",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.12",
"@types/multer": "^1",
"@types/node": "^20.14.12",
"@types/passport": "^1.0.16",
"@types/stripe": "^8.0.417",
"@types/supertest": "^6.0.2",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"@types/validator": "^13.12.0",
"husky": "^9.1.1",
"jest": "^29.7.0",
"lint-staged": "^15.2.7",
"prettier": "^3.3.3",
"supertest": "^7.0.0",
"ts-jest": "^29.2.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
},
"dependencies": {
"@bull-board/api": "^5.21.1",
"@bull-board/express": "^5.21.1",
"@commitlint/cli": "^19.3.0",
"@types/bcryptjs": "^2.4.6",
"@types/bull": "^4.10.0",
"@types/config": "^3.3.4",
"@types/cors": "^2.8.17",
"@types/jsonwebtoken": "^9.0.6",
"@types/nodemailer": "^6.4.15",
"@types/uuid-validate": "^0.0.3",
"bcryptjs": "^2.4.3",
"bull": "^4.15.1",
"class-validator": "^0.14.1",
"cloudinary": "^2.3.1",
"config": "^3.3.12",
"cors": "^2.8.5",
"crypto-js": "^4.2.0",
"dayjs": "^1.11.12",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-rate-limit": "^7.4.0",
"express-validator": "^7.1.0",
"flutterwave-node-v3": "^1.1.10",
"fs-extra": "^11.2.0",
"google-auth-library": "^9.12.0",
"handlebars": "^4.7.8",
"jest": "^29.7.0",
"jest-mock-extended": "^3.0.7",
"json2csv": "^6.0.0-alpha.2",
"jsonwebtoken": "^9.0.2",
"libphonenumber-js": "^1.11.5",
"multer": "^1.4.5-lts.1",
"multer-storage-cloudinary": "^4.0.0",
"node-mailer": "^0.1.1",
"open": "^10.1.0",
"passport": "^0.7.0",
"passport-google-oauth2": "^0.2.0",
"paystack": "^2.0.1",
"pdfkit": "^0.15.0",
"pg": "^8.12.0",
"pino": "^9.3.1",
"pino-pretty": "^11.2.1",
"reflect-metadata": "^0.1.14",
"speakeasy": "^2.0.0",
"stripe": "^16.5.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"ts-node-dev": "^2.0.0",
"twilio": "^5.2.2",
"typeorm": "^0.3.20",
"uuid": "^10.0.0",
"uuid-validate": "^0.0.3",
"validator": "^13.12.0",
"zod": "^3.23.8"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"packageManager": "[email protected]+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
}