-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (98 loc) · 2.94 KB
/
package.json
File metadata and controls
102 lines (98 loc) · 2.94 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "chatweb",
"version": "0.0.1",
"description": "",
"workspaces": [
"chatweb_client",
"chat_server"
],
"scripts": {
"client": "npm run dev --workspace=chatweb_client",
"client:build": "npm run build --workspace=chatweb_client",
"client:preview": "npm run preview --workspace=chatweb_client",
"client:build:preview": "npm run client:build && npm run client:preview",
"server:dev": "npm run start:dev --workspace=chat_server",
"server": "npm run start --workspace=chat_server",
"start:dev": "concurrently \"npm run server:dev\" \"npm run client\"",
"start": "concurrently \"npm run server\" \"npm run client\"",
"start:build:preview": "concurrently \"npm run server\" \"npm run client:build:preview\"",
"start:preview": "concurrently \"npm run server\" \"npm run client:preview\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Mvt1927/Chat.git"
},
"keywords": [
"chat",
"ts",
"react",
"nestjs",
"socketjs"
],
"author": "Mtv1927,khacvux",
"license": "UNLICENSED",
"private": true,
"dependencies": {
"@nestjs/common": "^9.0.0",
"@nestjs/config": "^2.2.0",
"@nestjs/core": "^9.0.0",
"@nestjs/jwt": "^9.0.0",
"@nestjs/passport": "^9.0.0",
"@nestjs/platform-express": "^9.0.0",
"@nestjs/platform-socket.io": "^9.0.11",
"@nestjs/websockets": "^9.0.11",
"@prisma/client": "^4.3.1",
"argon2": "^0.29.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"dotenv-cli": "^6.0.0",
"global": "^4.4.0",
"passport": "^0.6.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.2.0",
"socket.io": "^4.5.2",
"axios": "^0.27.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.4.1",
"react-toastify": "^9.0.8",
"styled-components": "^5.3.6"
},
"devDependencies": {
"@nestjs/cli": "^9.0.0",
"@nestjs/schematics": "^9.0.0",
"@nestjs/testing": "^9.0.0",
"@types/express": "^4.17.13",
"@types/jest": "28.1.4",
"@types/node": "^16.0.0",
"@types/passport-jwt": "^3.0.6",
"@types/passport-local": "^1.0.34",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "28.1.2",
"pactum": "^3.2.2",
"prettier": "^2.3.2",
"prisma": "^4.3.1",
"source-map-support": "^0.5.20",
"supertest": "^6.1.3",
"ts-jest": "28.0.5",
"ts-loader": "^9.2.3",
"ts-node": "^10.0.0",
"tsconfig-paths": "4.0.0",
"typescript": "^4.3.5",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@vitejs/plugin-react": "^2.1.0",
"autoprefixer": "^10.4.11",
"postcss": "^8.4.16",
"tailwindcss": "^3.1.8",
"vite": "^3.1.0"
}
}