-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3.29 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
{
"name": "@pinball/source",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"dev:front": "yarn nx run frontend:serve",
"dev:backend": "yarn nx run backend:serve",
"dev:multiplayer": "yarn nx run multiplayer:serve",
"dev": "yarn nx run-many -t serve -p frontend backend multiplayer --output-style stream",
"build:front": "yarn nx run frontend:build",
"build:backend": "yarn nx run backend:build",
"build:multiplayer": "yarn nx run multiplayer:build",
"build": "yarn nx run-many -t build",
"lint": "yarn nx run-many -t lint",
"prepare": "husky install"
},
"private": true,
"dependencies": {
"@colyseus/monitor": "^0.15.6",
"@colyseus/playground": "^0.15.12",
"@colyseus/schema": "^2.0.32",
"@colyseus/tools": "^0.15.39",
"@colyseus/uwebsockets-transport": "^0.15.7",
"@colyseus/ws-transport": "^0.15.2",
"@grpc/grpc-js": "^1.10.6",
"@grpc/proto-loader": "^0.7.12",
"@nestjs/common": "^10.0.2",
"@nestjs/config": "^3.2.0",
"@nestjs/core": "^10.0.2",
"@nestjs/microservices": "^10.3.7",
"@nestjs/platform-express": "^10.0.2",
"@nx/nest": "^18.0.4",
"@nx/webpack": "^18.0.4",
"@prisma/client": "^5.9.1",
"@reduxjs/toolkit": "^2.2.0",
"@swc/helpers": "~0.5.2",
"@vkontakte/vk-bridge": "^2.14.1",
"@vkontakte/vkui": "^6.0.3",
"app-root-path": "^3.1.0",
"axios": "^1.6.7",
"chokidar": "^3.6.0",
"colyseus": "^0.15.17",
"colyseus.js": "^0.15.20",
"cors": "^2.8.5",
"events": "^3.3.0",
"express": "^4.18.2",
"mainloop.js": "^1.0.4",
"matter-js": "^0.19.0",
"pathseg": "^1.2.1",
"pixi-viewport": "^5.0.3",
"pixi.js": "^8.1.5",
"poly-decomp-es": "^0.4.2",
"prisma": "^5.9.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-redux": "^9.1.0",
"react-router-dom": "^6.22.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.0",
"snapshot-interpolation": "^1.2.0",
"tslib": "^2.3.0",
"typed-emitter": "^2.1.0",
"uwebsockets-express": "^1.3.6"
},
"devDependencies": {
"@nestjs/schematics": "^10.0.1",
"@nx/eslint": "^18.0.4",
"@nx/eslint-plugin": "17.2.8",
"@nx/jest": "18.0.4",
"@nx/js": "18.0.4",
"@nx/node": "18.0.4",
"@nx/react": "17.2.8",
"@nx/vite": "17.2.8",
"@nx/web": "18.0.4",
"@nx/workspace": "17.2.8",
"@swc-node/register": "~1.8.0",
"@swc/cli": "~0.1.62",
"@swc/core": "~1.3.85",
"@types/cors": "^2.8.17",
"@types/events": "^3.0.3",
"@types/mainloop.js": "^1.0.7",
"@types/matter-js": "^0.19.6",
"@types/node": "~18.16.9",
"@types/react": "18.2.33",
"@types/react-dom": "18.2.14",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"@vitejs/plugin-react": "^4.2.0",
"@vkontakte/vk-miniapps-deploy": "^0.1.6",
"cross-env": "^7.0.3",
"eslint": "~8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-deprecation": "^2.0.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"nx": "17.2.8",
"prettier": "^2.6.2",
"ts-node": "10.9.1",
"typescript": "~5.2.2",
"vite": "^5.0.0",
"webpack-cli": "^5.1.4"
}
}