-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.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
{
"name": "fake-company-backend",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"local": "nodemon -r tsconfig-paths/register src/app.ts | ./node_modules/.bin/bunyan",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint 'src/**/*.ts' --fix",
"prettier": "prettier --check 'src/**/*.{ts,json}'",
"prettier:fix": "prettier --write 'src/**/*.{ts,json}' --fix",
"build": "tsc --project tsconfig.json && tsc-alias -p tsconfig.json"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@bull-board/express": "^5.2.0",
"@socket.io/redis-adapter": "^8.2.1",
"bullmq": "^3.14.0",
"bunyan": "^1.8.15",
"cloudinary": "^1.37.0",
"compression": "^1.7.4",
"cookie-session": "^2.0.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"helmet": "^7.0.0",
"hpp": "^0.2.3",
"http-status-codes": "^2.2.0",
"mongodb": "^5.5.0",
"mongoose": "^7.2.0",
"redis": "^4.6.6",
"socket.io": "^4.6.1",
"typescript": "^5.0.4"
},
"devDependencies": {
"@types/bunyan": "^1.8.8",
"@types/compression": "^1.7.2",
"@types/cookie-session": "^2.0.44",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/hpp": "^0.2.2",
"@types/jest": "^29.5.1",
"@types/node": "^20.2.1",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.6",
"tsconfig-paths": "^4.2.0",
"typescript-transform-paths": "^3.4.6"
}
}