-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.71 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.71 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": "dotcodeschool",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "astro dev --port 4321",
"prebuild": "tsx scripts/ingest.ts",
"build": "astro build",
"preview": "astro preview",
"fmt": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"dependencies": {
"@astrojs/mdx": "^5.0.3",
"@astrojs/node": "^10.0.4",
"@astrojs/react": "^5.0.2",
"@astrojs/vercel": "^10.0.3",
"@auth/core": "^0.37.4",
"@monaco-editor/react": "^4.6.0",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.2.2",
"ansi-to-html": "^0.7.2",
"astro": "^6.1.2",
"auth-astro": "^4.2.0",
"esbuild": "^0.25.1",
"gitorial-to-dotcodeschool": "github:dotcodeschool/gitorial-to-dotcodeschool",
"gray-matter": "^4.0.3",
"js-yaml": "^4.1.1",
"marked": "^17.0.5",
"mdx-bundler": "^10.1.1",
"octokit": "^5.0.5",
"prism-react-renderer": "^2.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.6.0",
"rehype-mdx-code-props": "^3.0.1",
"remark-gfm": "^4.0.1",
"tailwindcss": "^4.2.2",
"unist-util-visit": "^5.1.0",
"zustand": "^5.0.12"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/diff": "^7.0.2",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20",
"@types/react": "^18.3.12",
"@types/react-dom": "^18",
"@typescript-eslint/parser": "^8.58.0",
"diff": "^7.0.0",
"eslint": "^10.1.0",
"eslint-plugin-astro": "^1.6.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"prettier": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.7.2",
"tsx": "^4.21.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.58.0"
}
}