-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.09 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.09 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
{
"name": "my-v0-project",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "npm run check-todos && npm run generate-mdx-registry && next build",
"dev:watch": "concurrently \"next dev\" \"npm run watch-mdx\" \"npm run watch-todos\" --names \"next,watch,todos\" --prefix-colors \"cyan,magenta,yellow\"",
"dev": "npm run generate-mdx-registry && npm run dev:watch",
"dev:portless": "portless lw yarn dev",
"watch-mdx": "node scripts/watch-mdx-lessons.mjs",
"watch-todos": "nodemon --watch content/lessons --ext mdx --exec \"node scripts/check-todo-pointers.mjs\" --delay 1",
"check-todos": "node scripts/check-todo-pointers.mjs",
"lint": "eslint .",
"start": "next start",
"generate-mdx-registry": "node scripts/generate-mdx-registry.mjs",
"generate-course-data": "node scripts/generate-course-data.mjs",
"generate-all": "npm run generate-mdx-registry && npm run generate-course-data"
},
"dependencies": {
"@mdx-js/loader": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@next/mdx": "latest",
"@next/third-parties": "^16.1.6",
"@radix-ui/react-dropdown-menu": "2.1.4",
"@radix-ui/react-label": "2.1.1",
"@radix-ui/react-progress": "1.1.1",
"@radix-ui/react-radio-group": "1.2.2",
"@radix-ui/react-scroll-area": "1.2.2",
"@radix-ui/react-slot": "1.1.1",
"@types/mdx": "^2.0.13",
"@webiny/wts-client": "^3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"gray-matter": "^4.0.3",
"lucide-react": "^0.454.0",
"mdx": "latest",
"next": "16.1.5",
"next-themes": "^0.4.6",
"react": "19.2.0",
"react-dom": "19.2.0",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.1",
"remark-mdx-frontmatter": "^5.2.0",
"shiki": "^1.22.0",
"tailwind-merge": "^2.5.5"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.9",
"@types/node": "^22",
"@types/react": "^19",
"@types/react-dom": "^19",
"concurrently": "^9.1.0",
"portless": "^0.12.0",
"postcss": "^8.5",
"tailwindcss": "^4.1.9",
"tw-animate-css": "1.3.3",
"typescript": "^5"
}
}