-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·85 lines (85 loc) · 2.46 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·85 lines (85 loc) · 2.46 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
{
"name": "chatty_backend",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"start": "nodemon ./build/src/app.js | bunyan",
"dev": "nodemon -r tsconfig-paths/register src/app.ts | bunyan",
"lint:check": "eslint 'src/**/*.ts'",
"lint:fix": "eslint 'src/**/*.ts' --fix",
"prettier:check": "prettier --check 'src/**/*.{ts,json}'",
"prettier:fix": "prettier --write 'src/**/*.{ts,json}'",
"build": "tsc --project tsconfig.json && tsc-alias -p tsconfig.json"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@bull-board/api": "^5.14.1",
"@bull-board/express": "^5.14.1",
"@faker-js/faker": "^8.4.1",
"@jest/types": "^29.6.3",
"@sendgrid/mail": "^8.1.1",
"@socket.io/redis-adapter": "^8.2.1",
"axios": "^1.6.7",
"bcryptjs": "^2.4.3",
"bull": "^4.12.2",
"bullmq": "^5.1.11",
"bunyan": "^1.8.15",
"canvas": "^2.11.2",
"cloudinary": "^2.0.1",
"compression": "^1.7.4",
"cookie-session": "^2.1.0",
"cors": "^2.8.5",
"dotenv": "^16.4.4",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"helmet": "^7.1.0",
"hpp": "^0.2.3",
"http-status-codes": "^2.3.0",
"ip": "^1.1.8",
"joi": "^17.12.1",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"mongodb": "^6.3.0",
"mongoose": "^8.1.2",
"nodemailer": "^6.9.9",
"redis": "^4.6.13",
"socket.io": "^4.7.4",
"swagger-stats": "^0.99.7",
"typescript": "^5.3.3",
"typescript-transform-paths": "^3.4.6"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/bull": "^4.10.0",
"@types/bunyan": "^1.8.11",
"@types/compression": "^1.7.5",
"@types/cookie-session": "^2.0.48",
"@types/cors": "^2.8.17",
"@types/ejs": "^3.1.5",
"@types/express": "^4.17.21",
"@types/hpp": "^0.2.6",
"@types/ip": "^1.1.3",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.5",
"@types/lodash": "^4.14.202",
"@types/nodemailer": "^6.4.14",
"@types/redis-info": "^3.0.3",
"@types/swagger-stats": "^0.95.11",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"nodemon": "^3.0.3",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.8",
"tsconfig-paths": "^4.2.0"
}
}