-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.01 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
{
"name": "try-typescript",
"version": "1.0.1",
"private": true,
"description": "Learn TypeScript interactively with 150 practical lessons",
"keywords": [
"interactive",
"learning",
"tutorial",
"typescript"
],
"license": "ISC",
"author": "",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "oxlint .",
"format": "oxfmt . --write",
"preview": "vite preview"
},
"dependencies": {
"@monaco-editor/react": "^4.7.0",
"@tailwindcss/vite": "^4.0.0",
"canvas-confetti": "^1.9.3",
"lucide-react": "^0.577.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tailwindcss": "^4.2.1"
},
"devDependencies": {
"@types/canvas-confetti": "^1.9.0",
"@types/node": "^24.12.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.0",
"oxfmt": "^0.40.0",
"oxlint": "^1.55.0",
"typescript": "~5.9.3",
"vite": "^8.0.0",
"wrangler": "^4.73.0"
}
}