-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.86 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.86 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
{
"name": "steamguess",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"test": "vitest run && node --test server/tests/*.node.js",
"pics:install": "npm ci --prefix scripts/experimental/pics-poc",
"pics:tags": "npm --prefix scripts/experimental/pics-poc run tags --",
"data:discover": "python3 -m scripts.catalog.discover_steamspy",
"data:normalize": "python3 -m scripts.catalog.discover_steamspy --from-raw",
"data:fit": "python3 -m scripts.catalog.fit_difficulty",
"test:data": "python3 -m unittest discover -s scripts/tests -p \"test_*.py\"",
"data:publish-labeler": "python3 -m scripts.catalog.publish_labeling",
"data:merge-pics": "python3 -m scripts.catalog.enrich_pics",
"data:publish-playable": "python3 -m scripts.catalog.publish_playable",
"data:localize-names": "python3 -m scripts.catalog.enrich_storefront",
"data:fetch-cn-prices": "python3 -m scripts.catalog.enrich_cn_prices",
"data:sample-peaks": "python3 -m scripts.catalog.refresh_metrics",
"data:update-weekly": "python3 -m scripts.catalog.update_weekly",
"data:update-weekly-production": "./scripts/ops/run_weekly_catalog.sh",
"data:validate-release": "python3 scripts/ops/validate_catalog_release.py",
"start": "node --env-file-if-exists=.env server/index.js",
"test:server": "node --test server/tests/*.node.js",
"db:backup": "node scripts/ops/backup_database.mjs",
"db:stats": "node scripts/ops/feedback_stats.mjs",
"release:preflight": "node scripts/ops/preflight.mjs",
"release:check": "npm run lint && npm test && npm run test:data && npm run build && npm run release:preflight",
"data:discover-weekly": "python3 -m scripts.catalog.discover_steamspy --pages 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 --out data/catalog/steamspy_candidates.json",
"data:catalog-import": "python3 -m scripts.catalog.import_current",
"data:catalog-status": "python3 -m scripts.catalog.status",
"test:multiplayer-load": "node scripts/ops/multiplayer_load.mjs",
"data:enrich-reviews": "python3 -m scripts.catalog.enrich_reviews"
},
"dependencies": {
"date-fns": "^4.1.0",
"i18next": "^25.8.13",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-i18next": "^16.5.4",
"socket.io": "^4.8.3",
"socket.io-client": "^4.8.3",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^24.10.1",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"eslint": "^10.8.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.46.4",
"vite": "^7.2.4",
"vitest": "^4.1.10"
}
}