-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.99 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.99 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
{
"name": "graypaper-reader",
"private": true,
"version": "0.0.0",
"type": "module",
"engines": {
"node": ">=22.12.0"
},
"workspaces": [
"tools/*",
"shared/*"
],
"scripts": {
"qa": "biome ci",
"qa-fix": "biome check --write",
"qa-fix-unsafe": "biome check --write --unsafe",
"dev": "vite",
"dev:elves": "vite --mode elves",
"build": "tsc -b && bash scripts/build-doc.sh graypaper",
"build:elves": "tsc -b && bash scripts/build-doc.sh elves",
"preview": "vite preview",
"test": "vitest",
"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/shared-ui": "^0.8.1",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-slot": "^1.2.4",
"class-variance-authority": "^0.7.1",
"dompurify": "^3.3.3",
"jspdf": "^4.2.1",
"katex": "^0.16.45",
"lucide-react": "^1.8.0",
"pdfjs-dist": "^5.6.205",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-tooltip": "^5.30.0",
"tailwind-merge": "^3.5.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.12",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@tailwindcss/postcss": "^4.2.3",
"@tailwindcss/vite": "^4.2.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/katex": "^0.16.8",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/react-modal": "^3.16.3",
"@vitejs/plugin-react": "^6.0.1",
"husky": "^9.1.7",
"jsdom": "^29.0.1",
"tailwindcss": "^4.2.3",
"typescript": "^6.0.2",
"vite": "^8.0.9",
"vite-plugin-prefetch-chunk": "^0.1.2",
"vitest": "^4.1.2"
}
}