-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
46 lines (46 loc) · 1.28 KB
/
package.json
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
{
"name": "graypaper-reader",
"private": true,
"version": "0.0.0",
"type": "module",
"workspaces": ["tools/*", "shared/*"],
"scripts": {
"qa": "biome ci",
"qa-fix": "npm run format; npm run lint",
"format": "biome format --write",
"lint": "biome lint --write; biome check --write",
"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"
},
"dependencies": {
"@fluffylabs/migrate-selection": "^1.0.0",
"@fluffylabs/synctex-store": "^1.0.0",
"dompurify": "^3.2.0",
"katex": "^0.16.11",
"pdfjs-dist": "^4.5.136",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-modal": "^3.16.3",
"react-tooltip": "^5.27.1"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@fluffylabs/types": "^1.0.0",
"@types/katex": "^0.16.7",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-modal": "^3.16.3",
"@vitejs/plugin-react": "^4.3.1",
"shelljs": "^0.8.5",
"typescript": "^5.2.2",
"vite": "^5.3.4",
"vite-plugin-prefetch-chunk": "^0.1.2",
"vitest": "^2.1.8"
}
}