-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.76 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.76 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
75
76
77
78
79
80
81
82
83
84
85
{
"name": "codespaces",
"version": "0.5.0",
"private": true,
"scripts": {
"dev": "next dev -p 3010",
"dev:clean": "rm -rf .next && next dev -p 3010",
"build": "next build",
"start": "next start -p 3010",
"smoke:db": "tsx scripts/smoke-db.ts",
"reinstall:hooks": "tsx scripts/reinstall-hooks.ts",
"backup:registry": "tsx scripts/backup-registry.ts",
"reconcile:pages": "tsx scripts/reconcile-pages.ts",
"tracker:build": "tsx scripts/tracker-build.ts",
"tracker:check": "tsx scripts/tracker-build.ts --check",
"calendar:build": "tsx scripts/calendar-build.ts",
"calendar:check": "tsx scripts/calendar-build.ts --check",
"pretest": "npm run tracker:build",
"test": "vitest run --passWithNoTests",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"prepare": "husky",
"seed:demo": "tsx scripts/seed-demo.ts",
"seed:tracker": "tsx scripts/seed-tracker-demo.ts",
"seed:profiles": "tsx scripts/seed-profiles.ts",
"seed:workflows": "tsx scripts/seed-workflows-demo.ts",
"seed:readmes": "tsx scripts/brand-pod-readmes.ts",
"import:repo": "tsx scripts/import-repo.ts",
"relay": "tsx relay/server.ts"
},
"dependencies": {
"@inrupt/solid-client": "^3.0.0",
"@inrupt/solid-client-authn-browser": "^4.0.0",
"@inrupt/solid-client-authn-node": "^3.1.0",
"@mind-studio/core": "^0.7.0",
"@mind-studio/ui": "^0.7.0",
"@tiptap/extension-collaboration": "^2.11.5",
"@tiptap/extension-collaboration-cursor": "^2.11.5",
"@tiptap/extension-placeholder": "^2.27.2",
"@tiptap/extension-task-item": "^2.11.5",
"@tiptap/extension-task-list": "^2.11.5",
"@tiptap/pm": "^2.11.5",
"@tiptap/react": "^2.11.5",
"@tiptap/starter-kit": "^2.11.5",
"better-sqlite3": "^12.10.0",
"lib0": "^0.2.117",
"marked": "^18.0.4",
"n3": "^1.26.0",
"next": "16.2.6",
"react": "19.2.4",
"react-dom": "19.2.4",
"server-only": "^0.0.1",
"tiptap-markdown": "^0.8.10",
"y-indexeddb": "^9.0.12",
"y-protocols": "^1.0.6",
"y-websocket": "^3.0.0",
"yaml": "^2.9.0",
"yjs": "^13.6.20"
},
"devDependencies": {
"@biomejs/biome": "^2.5.0",
"@tailwindcss/postcss": "^4",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/ws": "^8.5.13",
"husky": "^9.1.7",
"lint-staged": "^17.0.7",
"tailwindcss": "^4",
"tsx": "^4.22.3",
"typescript": "^5",
"vitest": "^4.1.9",
"ws": "^8.18.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,jsonc}": "biome check --write --no-errors-on-unmatched"
},
"overrides": {
"postcss": "^8.5.10"
}
}