-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 loc) · 2.09 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
{
"name": "@protractors/nodeworld",
"version": "0.2.0",
"private": true,
"type": "module",
"scripts": {
"build": "run-s build:*",
"build:1-next": "cross-env NODE_ENV=production next build",
"build:2-server": "tsc --project tsconfig.server.json",
"dev:next": "next dev",
"dev:wss": "cross-env SKIP_ENV_VALIDATION=true tsx watch src/server/websockets/websocketsServer.ts --tsconfig tsconfig.server.json | pino-pretty",
"dev": "run-p dev:*",
"postinstall": "prisma generate",
"generate": "prisma generate",
"migrate": "prisma migrate dev",
"prisma:reset": "prisma migrate reset",
"prisma:studio": "prisma studio",
"lint": "next lint --fix",
"cypress:open": "cypress open",
"start": "cross-env NODE_ENV=production node --experimental-specifier-resolution=node dist/src/server/prodServer.js"
},
"dependencies": {
"@next-auth/prisma-adapter": "^1.0.5",
"@prisma/client": "^4.15.0",
"@tanstack/react-query": "^4.20.0",
"@trpc/client": "^10.27.1",
"@trpc/next": "^10.27.1",
"@trpc/react-query": "^10.27.1",
"@trpc/server": "^10.27.1",
"dotenv": "^16.0.3",
"next": "13.1.2",
"next-auth": "^4.18.7",
"node-fetch": "^3.3.1",
"phaser": "^3.60.0",
"phaser3-rex-plugins": "^1.60.2",
"pino": "^8.8.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"superjson": "1.9.1",
"uuid": "^9.0.0",
"ws": "^8.13.0",
"zod": "^3.20.2"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@types/uuid": "^9.0.1",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"cross-env": "^7.0.3",
"cypress": "^12.4.0",
"eslint": "^8.32.0",
"eslint-config-next": "^13.1.5",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.1",
"npm-run-all": "^4.1.5",
"pino-pretty": "^10.0.0",
"prettier": "^2.8.3",
"prisma": "^4.15.0",
"tsx": "^3.12.7",
"typescript": "^5.0.4"
},
"ct3aMetadata": {
"initVersion": "7.3.2"
},
"engines": {
"node": "18"
},
"exports": {
"src/*": "./dist/src/*"
}
}