-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 3.68 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "chat",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"nx": "nx",
"start": "nx serve",
"start:prod-deps": "nx run-many --target=serve-prod --projects=client-chat --with-deps",
"start:prod-deps:client": "nx run service-chat:serve-prod && nx run api-chat:serve-prod && nx serve client-chat",
"start-all:prod": "nx run service-chat:serve-prod && nx run api-chat:serve-prod && nx serve client-chat --prod",
"build": "nx build",
"build-all:prod": "nx run-many --target=build --all --prod",
"test": "nx test",
"lint": "nx workspace-lint && nx lint",
"e2e": "nx e2e",
"affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build",
"affected:e2e": "nx affected:e2e",
"affected:test": "nx affected:test",
"affected:lint": "nx affected:lint",
"affected:dep-graph": "nx affected:dep-graph",
"affected": "nx affected",
"format": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
"update": "nx migrate latest",
"workspace-schematic": "nx workspace-schematic",
"dep-graph": "nx dep-graph",
"help": "nx help"
},
"private": true,
"dependencies": {
"@grpc/proto-loader": "^0.5.4",
"@material-ui/core": "^4.10.2",
"@material-ui/icons": "^4.9.1",
"@nestjs/common": "^7.1.3",
"@nestjs/core": "^7.1.3",
"@nestjs/cqrs": "^7.0.0",
"@nestjs/microservices": "^7.2.0",
"@nestjs/mongoose": "^7.0.1",
"@nestjs/platform-express": "^7.1.3",
"@nestjs/platform-socket.io": "^7.1.3",
"@nestjs/websockets": "^7.1.3",
"@reduxjs/toolkit": "^1.4.0",
"@svtslv/nestjs-ioredis": "^1.0.2",
"class-transformer": "^0.3.1",
"class-validator": "^0.12.2",
"classnames": "^2.2.6",
"date-fns": "^2.14.0",
"document-register-element": "1.14.3",
"grpc": "^1.24.3",
"html-react-parser": "^0.13.0",
"identicon.js": "^2.3.3",
"ioredis": "^4.17.3",
"lodash.sortby": "^4.7.0",
"mongodb": "^3.5.9",
"mongoose": "^5.9.19",
"nanoid": "^3.1.10",
"quill-emoji": "^0.1.7",
"react": "16.13.1",
"react-chat-elements": "^10.9.2",
"react-dom": "16.13.1",
"react-quill": "^1.3.5",
"react-redux": "^7.2.0",
"react-router-dom": "5.2.0",
"react-spinners": "^0.8.3",
"redux": "^4.0.5",
"redux-saga": "^1.1.3",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.5.5",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0",
"socket.io-redis": "^5.3.0",
"swr": "^0.2.2"
},
"devDependencies": {
"@nestjs/schematics": "^7.0.1",
"@nestjs/testing": "^7.1.3",
"@nrwl/cypress": "9.3.0",
"@nrwl/eslint-plugin-nx": "9.3.0",
"@nrwl/jest": "9.3.0",
"@nrwl/nest": "^9.3.0",
"@nrwl/node": "9.3.0",
"@nrwl/react": "9.3.0",
"@nrwl/web": "9.3.0",
"@nrwl/workspace": "9.3.0",
"@testing-library/react": "10.2.1",
"@types/classnames": "^2.2.10",
"@types/identicon.js": "^2.3.0",
"@types/ioredis": "^4.16.5",
"@types/jest": "26.0.0",
"@types/lodash.sortby": "^4.7.6",
"@types/node": "~14.0.13",
"@types/react": "16.9.36",
"@types/react-dom": "16.9.8",
"@types/react-redux": "^7.1.9",
"@types/react-router-dom": "5.1.5",
"@types/socket.io": "^2.1.8",
"@types/socket.io-client": "^1.4.33",
"@types/socket.io-redis": "^1.0.26",
"@typescript-eslint/eslint-plugin": "3.2.0",
"@typescript-eslint/parser": "3.2.0",
"cypress": "^4.8.0",
"dotenv": "8.2.0",
"eslint": "7.2.0",
"eslint-config-prettier": "6.11.0",
"jest": "26.0.1",
"prettier": "2.0.5",
"ts-jest": "26.1.0",
"ts-node": "~8.10.2",
"tslint": "~6.1.2",
"typescript": "~3.9.5"
}
}