-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 932 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 932 Bytes
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
{
"name": "chatrooms",
"version": "1.0.0",
"description": "",
"main": "",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "ts-node -r tsconfig-paths/register ./backend/index.ts",
"format": "prettier --write ."
},
"author": "",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.33.0",
"@types/dotenv": "^8.2.3",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^24.2.1",
"@types/redis": "^4.0.11",
"@types/winston": "^2.4.4",
"@types/ws": "^8.18.1",
"esbuild": "^0.25.9",
"eslint": "^9.33.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^16.3.0",
"prettier": "3.6.2",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.16",
"typescript": "^5.9.2",
"typescript-eslint": "^8.39.0"
},
"dependencies": {
"jsonwebtoken": "^9.0.2",
"redis": "^5.8.0",
"winston": "^3.17.0",
"ws": "^8.18.3"
}
}