-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.06 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.06 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
{
"name": "scriptorium",
"private": true,
"version": "0.1.1",
"type": "module",
"scripts": {
"dev": "vite",
"db:prepare": "tsx ./scripts/prepare-catalog-database.ts",
"db:reset": "tsx ./scripts/reset-catalog-database.ts",
"dev:worker": "pnpm db:prepare && tsx watch ./scripts/dev-worker.ts",
"dev:worker:cf": "pnpm db:prepare && wrangler dev worker/index.ts",
"build": "pnpm typecheck && pnpm build:app && pnpm build:worker",
"build:app": "vite build",
"build:worker": "wrangler deploy --dry-run --outdir dist-worker",
"lint": "eslint .",
"format": "prettier --write \"**/*.{ts,tsx}\"",
"prune:ecosystems-packages": "tsx ./scripts/prune-ecosystems-packages.ts",
"sync:ecosystems-popular": "tsx ./scripts/sync-ecosystems-popular.ts",
"test": "vitest run",
"typecheck": "tsc -b",
"preview": "vite preview"
},
"dependencies": {
"@base-ui/react": "^1.3.0",
"@fontsource-variable/jetbrains-mono": "^5.2.8",
"@libsql/client": "^0.17.2",
"@tailwindcss/vite": "^4.2.2",
"@tanstack/react-query": "^5.96.1",
"@tanstack/react-table": "^8.21.3",
"@tanstack/react-virtual": "^3.13.23",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^1.7.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"shadcn": "^4.1.1",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.2",
"tw-animate-css": "^1.4.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^10.1.0",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.4.0",
"jsdom": "^27.4.0",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"tsx": "^4.21.0",
"typescript": "~6.0.2",
"typescript-eslint": "^8.58.0",
"vite": "^8.0.3",
"vitest": "^3.2.4",
"wrangler": "^4.79.0"
},
"volta": {
"node": "24.14.1"
}
}