-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 2.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
{
"name": "destiny-farm-finder",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"next-build": "next build",
"build:scripts": "tsc --project tsconfig.scripts.json",
"build": "npm run next-build && npm run build:scripts",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"discover": "npx tsx scripts/discover.ts",
"crawler": "npx tsx scripts/start-crawler.ts",
"setup-manifest": "npx tsx scripts/setup-manifest.ts",
"db-stats": "npx tsx scripts/db-stats.ts",
"debug-players": "npx tsx scripts/cleanup/debug-players.ts",
"debug-sessions": "npx tsx scripts/cleanup/debug-sessions.ts",
"scanner": "npx tsx scripts/start-scanner.ts",
"db-maintenance": "npx tsx scripts/run-db-maintenance.ts",
"backfill-ended-at": "npx tsx scripts/backfill-ended-at.ts",
"backfill-last-seen": "npx tsx scripts/backfill-last-seen.ts",
"clean-future-ended": "npx tsx scripts/clean-future-ended.ts",
"db-cleanup": "npx tsx scripts/db-cleanup.ts",
"create-phase3-indexes": "npx tsx scripts/create-phase3-indexes.ts",
"verify-phase3-cutover": "npx tsx scripts/verify-phase3-cutover.ts",
"drop-phase3-orphan-indexes": "npx tsx scripts/drop-phase3-orphan-indexes.ts",
"cleanup-types": "npx tsx scripts/cleanup/cleanup-membership-types.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"e2e:maintenance": "npx tsx scripts/test-maintenance-cycle.ts",
"capture-fixtures": "npx tsx scripts/capture-pgcr-fixture.ts",
"find-private": "npx tsx scripts/find-private-session-players.ts"
},
"dependencies": {
"@sentry/nextjs": "^10.47.0",
"better-sqlite3": "^12.6.2",
"dotenv": "^17.4.2",
"next": "16.1.6",
"react": "19.2.3",
"react-dom": "19.2.3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitest/coverage-v8": "^4.1.10",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"typescript": "^5",
"vitest": "^4.1.10"
}
}