-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.52 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.52 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
{
"name": "osspath",
"version": "0.1.0",
"private": true,
"scripts": {
"prebuild": "node scripts/check-public-purity.mjs && node scripts/check-schema-sync.mjs && node scripts/build-companion-index.mjs && node scripts/build-search-index.mjs && node scripts/build-oss-list.mjs",
"build": "next build",
"dev": "next dev",
"check:purity": "node scripts/check-public-purity.mjs",
"check:snapshot": "tsx scripts/check-snapshot-determinism.ts",
"check:cargo": "tsx scripts/check-cargo-parse.ts",
"check:backfill": "tsx scripts/check-backfill-select.ts",
"check:orchestrator": "tsx scripts/check-orchestrator.ts",
"check:corpus": "tsx scripts/check-corpus-relationships.ts",
"check:ecosystem": "tsx scripts/check-ecosystem-rules.ts",
"check:graph": "tsx scripts/check-graph-engine.ts",
"check:search": "tsx scripts/check-search-index.ts",
"check:github-refresh": "tsx scripts/check-github-refresh.ts",
"start": "next start",
"lint": "eslint",
"db:generate": "prisma generate",
"db:sync-schema": "prisma db push && node scripts/record-schema.mjs",
"db:export": "tsx scripts/export-snapshot.ts",
"db:backfill-batch": "tsx scripts/run-one-backfill-batch.ts",
"db:refresh-github": "tsx scripts/run-github-refresh-batch.ts",
"db:purge-broken-jobs": "tsx scripts/purge-broken-jobs.ts",
"db:seed-sources": "node scripts/seed-sources.mjs",
"db:studio": "prisma studio",
"logos": "tsx scripts/fetch-logos.ts",
"hn-opps": "tsx scripts/fetch-hn-opportunities.ts"
},
"browserslist": [
"chrome >= 109",
"firefox >= 109",
"safari >= 16",
"edge >= 109"
],
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@auth/prisma-adapter": "^2.11.2",
"@octokit/rest": "^22.0.1",
"@prisma/adapter-pg": "^7.8.0",
"@prisma/client": "^7.8.0",
"@types/pg": "^8.20.0",
"dotenv": "^17.4.2",
"lucide-react": "^1.16.0",
"next": "15.5.18",
"next-auth": "^5.0.0-beta.31",
"next-themes": "^0.4.6",
"pg": "^8.21.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"shadcn": "^4.8.0",
"smol-toml": "^1.7.0",
"sonner": "^2.0.7",
"tw-animate-css": "^1.4.0"
},
"devDependencies": {
"@playwright/test": "^1.60.0",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"esbuild": "^0.28.0",
"eslint": "^9",
"eslint-config-next": "16.2.6",
"prisma": "^7.8.0",
"tailwindcss": "^4",
"tsx": "^4.22.3",
"typescript": "^5"
}
}