-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.79 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
{
"name": "undrdr-vis",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"verify:domain": "node scripts/verify-domain-build.mjs",
"verify:email": "node scripts/check-email-dns.mjs",
"check:github": "node scripts/check-github-repos.mjs",
"check:github:apply": "node scripts/check-github-repos.mjs --apply",
"check:github:sample": "node scripts/check-github-repos.mjs --limit 10",
"candidates:check": "node scripts/import-repo-candidates.mjs --check",
"candidates:add": "node scripts/import-repo-candidates.mjs --apply",
"shelf:rotate": "node scripts/rotate-active-shelf.mjs",
"shelf:rotate:apply": "node scripts/rotate-active-shelf.mjs --apply",
"report:github": "node scripts/summarize-update-report.mjs",
"prune:audit": "node scripts/audit-prune-candidates.mjs",
"test:public-fit": "node scripts/test-public-fit.mjs",
"submissions:add": "node scripts/add-submission-to-dataset.mjs",
"submissions:review": "node scripts/review-submission.mjs",
"validate:data": "node scripts/validate-data.mjs",
"data:guard": "npm run validate:data",
"preview": "vite preview"
},
"dependencies": {
"@pixi/react": "^8.0.5",
"@supabase/supabase-js": "^2.105.4",
"pixi.js": "^8.17.1",
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/node": "^24.12.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^9.39.4",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.4.0",
"typescript": "~6.0.2",
"typescript-eslint": "^8.58.0",
"vite": "^8.0.4"
}
}