-
Notifications
You must be signed in to change notification settings - Fork 166
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 4.18 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 4.18 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
{
"name": "worldguessr",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "node welcome.js && npx concurrently \"cross-env NODE_OPTIONS='--no-warnings' UWS_HTTP_MAX_HEADERS_SIZE=16384 nodemon ws/ws --quiet --signal SIGTERM --exec \"node --no-warnings=ExperimentalWarning\" --watch ws/ws.js\" \"cross-env NODE_OPTIONS='--no-warnings' nodemon server.js --quiet --exec \"node --no-warnings=ExperimentalWarning\" --watch server.js --watch api --watch serverUtils --watch models --watch components/utils\" \"cross-env NODE_OPTIONS='--no-warnings' nodemon authServer.js --quiet --exec \"node --no-warnings=ExperimentalWarning\" --watch authServer.js --watch api/googleAuth.js --watch api/setName.js\" \"cross-env NODE_OPTIONS='--no-warnings' nodemon cron.js --quiet --exec \"node --no-warnings=ExperimentalWarning\" --watch cron.js\" \"npx next dev\"",
"devclient": "node welcome.js && npx concurrently \"cross-env NODE_OPTIONS='--no-warnings' nodemon server.js --quiet --exec \"node --no-warnings=ExperimentalWarning\" --watch server.js --watch api --watch serverUtils --watch models --watch components/utils\" \"cross-env NODE_OPTIONS='--no-warnings' nodemon authServer.js --quiet --exec \"node --no-warnings=ExperimentalWarning\" --watch authServer.js --watch api/googleAuth.js --watch api/setName.js\" \"cross-env NODE_OPTIONS='--no-warnings' nodemon cron.js --quiet --exec \"node --no-warnings=ExperimentalWarning\" --watch cron.js\" \"npx next dev\"",
"dev:gd": "cross-env NEXT_PUBLIC_GAMEDISTRIBUTION=true pnpm dev",
"dev:poki": "cross-env NEXT_PUBLIC_POKI=true pnpm dev",
"build": "cross-env next build",
"build:poki": "cross-env NEXT_PUBLIC_POKI=true NEXT_PUBLIC_API_URL=api.worldguessr.com NEXT_PUBLIC_AUTH_URL=gauth.worldguessr.com NEXT_PUBLIC_WS_HOST=server.worldguessr.com NEXT_DIST_DIR=.next-poki next build && node scripts/packagePoki.mjs",
"start-api": "cross-env NODE_ENV=production node server.js",
"start-auth": "cross-env NODE_ENV=production node authServer.js",
"start-ws": "cross-env UWS_HTTP_MAX_HEADERS_SIZE=16384 NODE_ENV=production node ws/ws",
"start-cron": "cross-env NODE_ENV=production node cron.js",
"heroku-postbuild": "cross-env next build"
},
"packageManager": "pnpm@9.15.9",
"engines": {
"pnpm": ">=9"
},
"browserslist": [
"chrome >= 90",
"edge >= 90",
"firefox >= 88",
"safari >= 14",
"and_chr >= 90",
"ios_saf >= 14"
],
"dependencies": {
"@googlemaps/js-api-loader": "^1.16.6",
"@osm_borders/maritime_10m": "^1.1.0",
"@react-oauth/google": "^0.12.1",
"@smastrom/react-rating": "^1.5.0",
"axios": "^1.7.7",
"bad-words": "^4.0.0",
"blocked-at": "^1.2.0",
"body-parser": "^1.20.3",
"canvas-confetti": "^1.9.4",
"chart.js": "^4.5.0",
"chartjs-adapter-date-fns": "^3.0.0",
"colors": "^1.4.0",
"coordinate_to_country": "^1.1.0",
"cors": "^2.8.5",
"countries-and-timezones": "^3.8.0",
"countries-code": "^1.1.1",
"cross-env": "^7.0.3",
"discord-webhook-node": "^1.1.8",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"formidable": "^3.5.1",
"geojson-geometries-lookup": "^0.5.0",
"google-auth-library": "^9.14.2",
"i18n-iso-countries": "^7.14.0",
"jsonwebtoken": "^9.0.2",
"leaflet": "1.9.4",
"moment": "^2.30.1",
"moment-timezone": "^0.5.45",
"mongoose": "^8.3.3",
"next": "15.4.5",
"ol": "^9.1.0",
"react": "19.1.0",
"react-chartjs-2": "^5.3.0",
"react-dom": "19.1.0",
"react-horizontal-scrolling-menu": "^7.1.1",
"react-icons": "^5.1.0",
"react-leaflet": "^4.2.1",
"react-responsive-modal": "^6.4.2",
"react-simple-typewriter": "^5.0.1",
"react-toastify": "^10.0.5",
"recachegoose": "^11.0.2",
"redis": "^5.1.0",
"sass": "^1.77.2",
"sharp": "^0.33.5",
"uWebSockets.js": "github:uNetworking/uWebSockets.js#v20.52.0",
"uuid": "^9.0.1",
"web-vitals": "^5.3.0"
},
"devDependencies": {
"@capsizecss/metrics": "^4.1.0",
"concurrently": "^9.0.1",
"eslint": "^8",
"eslint-config-next": "14.2.1",
"google-translate-free": "^2.4.5",
"mapcheckr-cli": "^1.1.2",
"nodemon": "^3.1.3"
}
}