-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.29 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
{
"name": "sail-formula-generator",
"version": "1.0.0",
"private": true,
"license": "Apache-2.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"check:catalog": "tsx scripts/check-catalog.ts"
},
"dependencies": {
"@codemirror/autocomplete": "^6.20.3",
"@codemirror/language": "^6.10.8",
"@codemirror/view": "^6.36.4",
"@fontsource/geist-mono": "^5.2.8",
"@fontsource/space-grotesk": "^5.2.10",
"@lezer/highlight": "^1.2.3",
"@uiw/react-codemirror": "^4.23.10",
"clsx": "^2.1.1",
"lucide-react": "^0.469.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwind-merge": "^2.6.0",
"zod": "^3.24.1",
"zustand": "^5.0.3"
},
"devDependencies": {
"@tailwindcss/vite": "^4.0.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@types/node": "^22.10.5",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"fast-check": "^3.23.2",
"jsdom": "^26.0.0",
"tailwindcss": "^4.0.0",
"tsx": "^4.19.2",
"typescript": "~5.7.3",
"vite": "^6.0.7",
"vitest": "^3.0.2"
}
}