-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.78 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
{
"name": "compote",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:server": "tsc && vite build --mode server",
"build:dev": "vite build --mode development",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0 && node scripts/check-ui-rules.cjs",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"tsc": "tsc",
"fetch-icons": "node scripts/fetch-icons.mjs"
},
"dependencies": {
"@fontsource-variable/geist": "^5.2.8",
"@radix-ui/react-slot": "^1.0.2",
"@types/marked": "^6.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"idb-keyval": "^6.2.2",
"js-yaml": "^4.1.1",
"jszip": "^3.10.1",
"lucide-react": "^1.8.0",
"marked": "^18.0.2",
"radix-ui": "^1.4.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6",
"shadcn": "^4.3.0",
"tailwind-merge": "^3.5.0",
"tailwindcss-animate": "^1.0.7",
"tw-animate-css": "^1.4.0",
"yaml": "^2.8.3",
"zustand": "^4.5.2"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/jszip": "^3.4.1",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^4.1.5",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"jsdom": "^29.1.1",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.3",
"typescript": "^5.2.2",
"vite": "^5.2.0",
"vitest": "^4.1.5"
}
}