-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.79 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
{
"name": "silo-web-client",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Web interface for querying and learning SILO",
"scripts": {
"predev": "node scripts/prepare-wasm.mjs",
"dev": "vite",
"prebuild": "node scripts/prepare-wasm.mjs",
"build": "tsc --noEmit && vite build && node scripts/postbuild.mjs",
"serve": "vite preview",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"format": "prettier --write \"./**/*.{js,jsx,ts,tsx,json,css,md,mjs}\"",
"check-format": "prettier --check \"./**/*.{js,jsx,ts,tsx,json,css,md,mjs}\""
},
"dependencies": {
"@codemirror/commands": "^6.10.3",
"@codemirror/language": "^6.10.2",
"@codemirror/lint": "^6.9.7",
"@fontsource-variable/jetbrains-mono": "^5.3.0",
"@lezer/highlight": "^1.2.1",
"@nightingale-elements/nightingale-manager": "^5.6.0",
"@nightingale-elements/nightingale-msa": "^5.6.0",
"@nightingale-elements/nightingale-navigation": "^5.6.0",
"@uiw/react-codemirror": "^4.23.0",
"@zip.js/zip.js": "^2.8.34",
"canvas-confetti": "^1.9.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^7.18.2",
"yaml": "^2.9.0"
},
"devDependencies": {
"@tailwindcss/vite": "^4.3.3",
"@types/canvas-confetti": "^1.9.0",
"@types/node": "^25.9.3",
"@types/react": "^18.3.31",
"@types/react-dom": "^18.3.7",
"@vitejs/plugin-react": "^6.0.4",
"daisyui": "^5.7.4",
"prettier": "^3.8.3",
"prettier-plugin-tailwindcss": "^0.8.1",
"tailwindcss": "^4.3.3",
"typescript": "^6.0.3",
"vite": "^8.1.5",
"vitest": "^4.1.10"
}
}