-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.31 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
{
"name": "chatty-backend",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"dev": "nodemon -r tsconfig-paths/register src/app.ts | bunyan -o short",
"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}'"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@socket.io/redis-adapter": "^8.2.1",
"bunyan": "^1.8.15",
"compression": "^1.7.4",
"cookie-session": "^2.1.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"helmet": "^7.1.0",
"hpp": "^0.2.3",
"http-status-codes": "^2.3.0",
"mongoose": "^8.1.3",
"redis": "^4.6.13",
"socket.io": "^4.7.4",
"typescript": "^5.3.3"
},
"devDependencies": {
"@types/bunyan": "^1.8.11",
"@types/compression": "^1.7.5",
"@types/cookie-session": "^2.0.48",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/hpp": "^0.2.6",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0"
}
}