-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
53 lines (52 loc) · 2 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
{
"name": "demo-nest-react",
"version": "0.0.1",
"description": "Demo NestJS with React for CSC 419",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "turbo run dev",
"hms:dev": "turbo run hms:dev",
"build": "turbo run build",
"hms:build": "turbo run hms:build",
"hms:copy:proto": "turbo run hms:copy:proto",
"start": "node apps/demo-backend/dist/demo-backend/src/main",
"hms:start:identity": "node hms-apps/identity/dist/main",
"hms:start:api-gateway": "node hms-apps/api-gateway/dist/src/main",
"update:hms:lib:not-in-use": "copyfiles -u 1 hms-apps/google/**/* hms-apps/proto/**/*.ts packages/hms-lib/src/types && npm install",
"hms:lib:update": "turbo run hms:lib:update",
"hms:start:all": "pm2 start hms-apps/identity/dist/main.js -i 4 --name identity && pm2 start hms-apps/api-gateway/dist/src/main.js -i 4 --name api-gateway",
"hms:stop:all": "pm2 stop api-gateway && pm2 stop identity",
"hms:preview": "turbo run hms:preview",
"hms:gen:identity.ts:from:proto": "../protoc-25.1-osx-x86_64/bin/protoc --plugin=../node_modules/.bin/protoc-gen-ts_proto --ts_proto_out=./ --ts_proto_opt=nestJs=true ./proto/identity.proto"
},
"author": "Pius Onobhayedo",
"license": "MIT",
"devDependencies": {
"@swc/cli": "^0.1.63",
"@swc/core": "^1.3.100",
"@types/loadable__component": "^5.13.7",
"turbo": "^1.11.2"
},
"workspaces": [
"apps/*",
"hms-apps/*",
"packages/*"
],
"dependencies": {
"@grpc/grpc-js": "^1.9.13",
"@grpc/proto-loader": "^0.7.10",
"@loadable/component": "^5.15.3",
"@nestjs/microservices": "^10.2.10",
"accept-language-parser": "^1.5.0",
"directory-tree": "^3.5.1",
"i18next": "^23.7.8",
"i18next-browser-languagedetector": "^7.2.0",
"i18next-fs-backend": "^2.3.1",
"i18next-http-backend": "^2.4.2",
"i18next-http-middleware": "^3.5.0",
"pm2": "^5.3.0",
"react-i18next": "^13.5.0",
"react-router-dom": "^6.20.0"
}
}