-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.33 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.33 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
69
70
71
72
{
"name": "markdownmate",
"version": "3.0.0",
"type": "module",
"license": "MIT",
"scripts": {
"dev": "NODE_ENV=development tsx server/index.ts",
"build": "vite build && esbuild server/index.ts --platform=node --packages=external --bundle --format=esm --outdir=dist",
"start": "NODE_ENV=production node dist/index.js",
"check": "tsc",
"lint:fix": "echo 'No linter configured'",
"typecheck": "tsc --noEmit",
"metrics:build": "node scripts/measure-build.js",
"metrics:monaco": "node scripts/analyze-monaco.js",
"metrics:preview": "node scripts/measure-preview.js",
"metrics:idb": "node scripts/measure-idb.js",
"metrics:all": "npm run metrics:build && npm run metrics:monaco && npm run metrics:preview && npm run metrics:idb"
},
"dependencies": {
"@monaco-editor/react": "^4.7.0",
"@radix-ui/react-alert-dialog": "^1.1.7",
"@radix-ui/react-dialog": "^1.1.7",
"@radix-ui/react-dropdown-menu": "^2.1.7",
"@radix-ui/react-scroll-area": "^1.2.4",
"@radix-ui/react-slot": "^1.2.0",
"@radix-ui/react-toast": "^1.2.7",
"@radix-ui/react-tooltip": "^1.2.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"dotenv": "^16.5.0",
"express": "^4.21.2",
"file-saver": "^2.0.5",
"helmet": "^8.0.0",
"idb": "^8.0.1",
"lucide-react": "^0.453.0",
"prismjs": "^1.30.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-resizable-panels": "^2.1.7",
"rehype-katex": "^7.0.1",
"rehype-prism-plus": "^2.0.1",
"rehype-sanitize": "^6.0.0",
"rehype-stringify": "^10.0.1",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"unified": "^11.0.5",
"winston": "^3.17.0",
"wouter": "^3.3.5",
"zustand": "^5.0.5"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.15",
"@types/express": "4.17.21",
"@types/file-saver": "^2.0.7",
"@types/node": "^20.16.11",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.2",
"autoprefixer": "^10.4.20",
"esbuild": "^0.25.0",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.17",
"tsx": "^4.19.1",
"typescript": "^5.6.3",
"vite": "^7.0.2"
}
}