-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.97 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.97 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
{
"name": "graypaper-reader",
"private": true,
"version": "0.0.0",
"type": "module",
"workspaces": ["tools/*", "shared/*"],
"scripts": {
"qa": "biome ci",
"qa-fix": "biome check --write",
"qa-fix-unsafe": "biome check --write --unsafe",
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"test": "vitest",
"cp-gp": "node ./scripts/cp-gp.js",
"prebuild": "git submodule update --init && npm run cp-gp",
"predev": "npm run cp-gp",
"serve": "vite preview",
"docker:build": "docker-compose build",
"docker:test": "./scripts/run-docker-snapshot-tests.sh",
"docker:test:update": "docker-compose run --rm snapshot-tests-update",
"docker:clean": "docker-compose down && docker system prune -f"
},
"dependencies": {
"@fluffylabs/migrate-selection": "^1.0.0",
"@fluffylabs/shared-ui": "^0.4.5",
"@fluffylabs/synctex-store": "^1.0.0",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-popover": "^1.1.14",
"@radix-ui/react-slot": "^1.2.3",
"@types/jspdf": "^1.3.3",
"class-variance-authority": "^0.7.1",
"dompurify": "^3.2.6",
"jspdf": "^3.0.1",
"katex": "^0.16.22",
"lucide-react": "^0.546.0",
"pdfjs-dist": "^4.5.136",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-tooltip": "^5.29.1",
"tailwind-merge": "^3.3.1"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@fluffylabs/types": "^1.0.0",
"@tailwindcss/postcss": "^4.1.13",
"@tailwindcss/vite": "^4.1.10",
"@types/katex": "^0.16.7",
"@types/react": "^19.1.7",
"@types/react-dom": "^19.1.6",
"@types/react-modal": "^3.16.3",
"@vitejs/plugin-react": "^5.0.1",
"husky": "^9.1.7",
"shelljs": "^0.10.0",
"tailwindcss": "^4.1.10",
"typescript": "^5.8.3",
"vite": "^6.3.6",
"vite-plugin-prefetch-chunk": "^0.1.2",
"vitest": "^3.1.2"
}
}