-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
86 lines (86 loc) · 2.51 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
80
81
82
83
84
85
86
{
"name": "chat",
"version": "5.0.0",
"description": "Sample React oAuth Chat",
"type": "module",
"scripts": {
"start": "tsx core/server.ts",
"test": "yarn lint && yarn test:types",
"lint": "eslint",
"test:types": "tsc --noEmit && tsc --noEmit -p tsconfig.node.json",
"build:client": "tsx core/generate-client.ts && eslint --fix app/client.ts",
"build:app": "vite build",
"build:core": "tsup"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RobinTail/chat.git"
},
"author": "Anna Bocharova",
"license": "MIT",
"bugs": {
"url": "https://github.com/RobinTail/chat/issues"
},
"homepage": "https://github.com/RobinTail/chat#readme",
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@mui/material": "^6.1.9",
"@types/express-session": "^1.18.0",
"express": "^5.0.1",
"express-session": "^1.18.0",
"express-zod-api": "^22.0.0-beta.5",
"http-errors": "^2.0.0",
"ion-sound": "^3.0.7",
"linkify-react": "^4.1.3",
"linkifyjs": "^4.1.3",
"merge-sx": "^3.3.0",
"moment": "^2.30.1",
"passport": "^0.7.0",
"passport-facebook": "^3.0.0",
"passport-google-oauth2": "^0.2.0",
"passport-twitter": "^1.0.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router-dom": "^7.0.0",
"smoothscroll": "^0.4.0",
"socket.io": "^4.7.5",
"socket.io-client": "^4.7.5",
"zod": "^3.23.8",
"zod-sockets": "^2.0.0"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/express": "^5.0.0",
"@types/passport": "^1.0.16",
"@types/passport-facebook": "^3.0.3",
"@types/passport-google-oauth2": "^0.1.8",
"@types/passport-twitter": "^1.0.40",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react-swc": "^3.6.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react-hooks": "^5.1.0",
"globals": "^15.3.0",
"prettier": "3.4.2",
"socket.io-client-cookie": "^0.1.0",
"tsup": "^8.0.2",
"tsx": "^4.7.2",
"typescript": "^5.4.5",
"typescript-eslint": "^8.0.0",
"vite": "^6.0.0",
"vite-plugin-material-symbols": "^0.4.0"
},
"engines": {
"node": "^18 || ^20 || ^22"
},
"resolutions": {
"**/react": "^19.0.0",
"**/react-dom": "^19.0.0",
"**/@types/react": "^19.0.0",
"**/xmldom": "npm:@xmldom/xmldom@^0.9.0"
},
"packageManager": "[email protected]+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
}