-
Notifications
You must be signed in to change notification settings - Fork 217
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.08 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.08 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
68
{
"name": "www-v2",
"private": true,
"version": "0.0.0",
"type": "module",
"homepage": "https://www.sugarlabs.org/",
"scripts": {
"dev": "vite --host",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview --host",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist",
"lint:ts": "eslint 'src/**/*.{ts,tsx}'",
"lint:md": "markdownlint '**/*.md' --ignore-path .prettierignore",
"format": "prettier --write 'src/**/*.{js,jsx,ts,tsx,json,css,md}'",
"format:file": "prettier --write",
"format:check": "prettier --check 'src/**/*.{js,jsx,ts,tsx,json,css,md}'"
},
"dependencies": {
"@tailwindcss/vite": "^4.1.18",
"axios": "^1.13.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dompurify": "^3.3.1",
"framer-motion": "^12.29.2",
"hastscript": "^9.0.1",
"lucide-react": "^0.563.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-hot-toast": "^2.6.0",
"react-markdown": "^10.1.0",
"react-responsive-carousel": "^3.2.23",
"react-router-dom": "^7.13.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"rehype-slug": "^6.0.0",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.1",
"remark-supersub": "^1.0.0",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.18",
"tailwindcss-animate": "^1.0.7",
"unist-util-visit": "^5.1.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^25.1.0",
"@types/react": "^19.2.10",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.2",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.26",
"gh-pages": "^6.3.0",
"globals": "^17.2.0",
"markdownlint": "^0.40.0",
"markdownlint-cli": "^0.47.0",
"prettier": "^3.8.1",
"typescript": "~5.9.3",
"typescript-eslint": "^8.54.0",
"vite": "^7.3.1"
}
}