-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.28 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.28 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
{
"name": "visual-python-learning-system",
"private": false,
"version": "3.0.0",
"description": "A React-based visual learning system for Python concepts. Interactive animations for algorithms, fundamentals, and projects.",
"type": "module",
"scripts": {
"production": "npm run build && npm start",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"type-check": "tsc --noEmit"
},
"keywords": [
"python",
"education",
"algorithms",
"visualization",
"react",
"tailwind",
"typescript",
"learning"
],
"author": "Kazi Musharraf",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mk-knight23/25-python-mixed-examples.git"
},
"homepage": "https://mk-knight23.github.io/25-python-mixed-examples/",
"dependencies": {
"framer-motion": "^12.29.2",
"lucide-react": "^0.474.0",
"playwright": "^1.58.2",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-router": "^7.13.0",
"zustand": "^5.0.11"
},
"devDependencies": {
"@tailwindcss/vite": "^4.1.18",
"@types/react": "^19.2.9",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^4.7.0",
"tailwindcss": "^4.0.0",
"typescript": "^5.9.3",
"vite": "^6.4.1"
}
}