-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.45 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.45 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
{
"name": "template-react-ts",
"description": "A Phaser 3 TypeScript project template that demonstrates React communication and uses Vite for bundling.",
"version": "1.1.0",
"repository": {
"type": "git",
"url": "git+https://github.com/phaserjs/template-react-ts.git"
},
"author": "Phaser Studio <support@phaser.io> (https://phaser.io/)",
"license": "MIT",
"licenseUrl": "http://www.opensource.org/licenses/mit-license.php",
"bugs": {
"url": "https://github.com/phaserjs/template-react-ts/issues"
},
"homepage": "https://github.com/phaserjs/template-react-ts#readme",
"engines": {
"node": ">=20"
},
"keywords": [
"phaser",
"phaser3",
"react",
"vite",
"typescript"
],
"scripts": {
"dev": "node log.js dev & vite --config vite/config.dev.mjs",
"dev:cloud": "node log.js dev & concurrently -k -n API,WEB -c green,blue \"npm run server:dev\" \"vite --config vite/config.dev.mjs\"",
"build": "node log.js build & vite build --config vite/config.prod.mjs",
"dev-nolog": "vite --config vite/config.dev.mjs",
"build-nolog": "vite build --config vite/config.prod.mjs",
"server:dev": "node --import tsx server/src/index.ts",
"server:start": "node --import tsx server/src/index.ts",
"prisma:generate": "prisma generate",
"prisma:migrate:dev": "prisma migrate dev",
"prisma:migrate:deploy": "prisma migrate deploy",
"railway:start": "npm run prisma:migrate:deploy && npm run server:start",
"postinstall": "prisma generate",
"test": "vitest run",
"test:watch": "vitest",
"test:unit": "vitest run",
"test:e2e": "node scripts/playwright-no-deprecation.cjs test",
"test:e2e:ui": "node scripts/playwright-no-deprecation.cjs test --ui",
"test:all": "npm run test:unit && npm run test:e2e",
"invite:create": "node --import tsx scripts/create-invite.ts",
"invite:revoke": "node --import tsx scripts/revoke-invite.ts"
},
"dependencies": {
"@prisma/adapter-pg": "^7.8.0",
"@prisma/client": "^7.8.0",
"argon2": "^0.44.0",
"cookie-parser": "^1.4.7",
"express": "^5.1.0",
"express-rate-limit": "^8.1.0",
"helmet": "^8.1.0",
"ip-address": "^10.2.0",
"pg": "^8.20.0",
"phaser": "^4.0.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"tsx": "^4.20.5",
"yaml": "^2.9.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.60.0",
"@types/cookie-parser": "^1.4.9",
"@types/node": "^25.9.1",
"@types/pg": "^8.15.5",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"@types/supertest": "^7.2.0",
"@vitejs/plugin-react": "^6.0.2",
"concurrently": "^9.2.1",
"eslint": "^10.4.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.6.0",
"jsdom": "^29.1.1",
"prisma": "^7.8.0",
"supertest": "^7.1.4",
"terser": "^5.47.1",
"typescript": "~6.0.3",
"typescript-eslint": "^8.59.4",
"vite": "^8.0.10",
"vitest": "^4.1.5"
},
"overrides": {
"@hono/node-server": "1.19.13",
"express-rate-limit": {
"ip-address": "10.1.1"
}
}
}