-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.46 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
{
"name": "e-learning",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"watch": "tsc -w",
"start": "tsc && node dist/index.js",
"build": "tsc ",
"start:dev": "concurrently \"tsc -w\" \"nodemon dist/index.js\"",
"typeorm": "typeorm-ts-node-commonjs",
"dev": "nodemon dist/index.js",
"migration:create": "yarn prebuild && yarn build && npx typeorm-ts-node-commonjs migration:create -d ./src/data-source.ts",
"migration:generate": " tsc && npx typeorm-ts-node-commonjs migration:generate -d ./src/data-source.ts",
"migration:run": "tsc && yarn run typeorm migration:run -- -d ./src/data-source.ts"
},
"author": "Abdullateef Mubarak",
"license": "ISC",
"description": "",
"dependencies": {
"@aws-sdk/client-s3": "^3.685.0",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@theinternetfolks/snowflake": "^1.3.0",
"@types/bcryptjs": "^2.4.6",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/express-session": "^1.18.1",
"@types/html-to-text": "^9.0.4",
"@types/jsonwebtoken": "^9.0.7",
"@types/multer": "^1.4.12",
"@types/multer-s3": "^3.0.3",
"@types/node": "^22.8.7",
"@types/nodemailer": "^6.4.17",
"@types/otp-generator": "^4.0.2",
"@types/pug": "^2.0.10",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.7",
"bcryptjs": "^2.4.3",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"commitizen": "^4.3.1",
"concurrently": "^9.1.2",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.2",
"express-session": "^1.18.1",
"helmet": "^8.0.0",
"hi-base32": "^0.5.1",
"html-to-text": "^9.0.5",
"http-status-codes": "^2.3.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.9.3",
"multer": "^1.4.5-lts.1",
"multer-s3": "^3.0.1",
"nodemailer": "^6.9.16",
"nodemon": "^3.1.7",
"otp-generator": "^4.0.1",
"otpauth": "^9.3.6",
"pg": "^8.13.1",
"pug": "^3.0.3",
"reflect-metadata": "^0.2.2",
"routing-controllers": "^0.10.4",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"ts-node": "^10.9.2",
"typeorm": "^0.3.20",
"typescript": "^5.7.2",
"uuid": "^11.0.2",
"xss": "^1.0.15"
},
"devDependencies": {
"@types/morgan": "^1.9.9",
"husky": "^9.1.7",
"morgan": "^1.10.0",
"ts-node-dev": "^2.0.0"
}
}