-
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.55 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.55 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": "mdedit.io",
"version": "0.2.4",
"private": true,
"author": "Matthias Hertel",
"homepage": "https://mdedit.io",
"license": "Apache-2.0",
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "node --env-file=.env server.js",
"start": "node --env-file=.env server.js",
"i18n:pretranslate": "node scripts/i18n-pretranslate.js",
"i18n:sync": "node scripts/i18n-sync.js",
"i18n:validate": "node scripts/i18n-validate.js",
"stats:marketing-snapshot": "node --env-file=.env scripts/marketing-stats-sync.js",
"stats:search-console-sync": "node --env-file=.env scripts/search-console-sync.js",
"stats:search-console-auth": "node scripts/gsc-auth-setup.js",
"stats:index-check": "node scripts/gsc-index-check.js",
"smoke:stats": "node scripts/stats-smoke.js",
"smoke:citations": "node scripts/citations-smoke.js",
"smoke:reference-citations": "node scripts/reference-citations-smoke.js",
"smoke:paged-parity": "node scripts/paged-preview-parity.js",
"smoke:visual": "node scripts/visual-smoke.js",
"audit:layout": "node scripts/thesis-audit.js",
"audit:book": "node scripts/book-audit.js",
"audit:quickread": "node scripts/quickread-audit.js",
"audit:prod": "npm audit --omit=dev",
"release:check": "npm run i18n:validate && npm run audit:prod && npm run smoke:stats && npm run smoke:reference-citations && npm run smoke:visual"
},
"overrides": {
"basic-ftp": "^5.2.3",
"fast-uri": "3.1.2",
"ip-address": "10.2.0"
},
"dependencies": {
"@fastify/cookie": "^11.0.2",
"@fastify/helmet": "^13.0.2",
"@fastify/rate-limit": "^10.3.0",
"@fastify/static": "^9.1.3",
"@fastify/websocket": "^11.2.0",
"@google/generative-ai": "^0.24.1",
"bcryptjs": "^3.0.3",
"better-sqlite3": "^9.4.5",
"fastify": "^5.8.5",
"puppeteer-core": "^24.37.3"
},
"devDependencies": {
"jszip": "^3.10.1",
"markdown-it": "^14.1.0",
"markdown-it-abbr": "^1.0.4",
"markdown-it-anchor": "^8.6.7",
"markdown-it-attrs": "^4.1.6",
"markdown-it-container": "^3.0.0",
"markdown-it-deflist": "^2.1.0",
"markdown-it-emoji": "^3.0.0",
"markdown-it-footnote": "^3.0.3",
"markdown-it-katex": "^2.0.3",
"markdown-it-mark": "^3.0.1",
"markdown-it-multimd-table": "^4.2.3",
"markdown-it-sub": "^2.0.0",
"markdown-it-sup": "^2.0.0",
"markdown-it-task-lists": "^2.1.1",
"markdown-it-toc-done-right": "^4.2.0",
"markmap-view": "^0.18.9",
"mermaid": "^11.4.0",
"pixelmatch": "^5.3.0",
"pngjs": "^7.0.0"
}
}