-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.31 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.31 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
{
"name": "otzaria-rewrite",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"generate-version": "node -e \"const fs = require('fs'); fs.writeFileSync('./public/version.json', JSON.stringify({ version: Date.now() }));\"",
"build:offline-editor": "node scripts/build-offline-editor.js",
"build:icons": "node scripts/build-icon-font.mjs",
"build:assets": "node scripts/optimize-assets.mjs",
"refresh:editor-icons": "node scripts/build-offline-editor.js --refresh-icons",
"check:icons": "node scripts/build-icon-font.mjs --check",
"check:perf": "node --disable-warning=MODULE_TYPELESS_PACKAGE_JSON scripts/check-perf-budget.mjs",
"build": "npm run generate-version && npm run check:icons && next build && npm run build:offline-editor && npm run check:perf",
"start": "next start",
"test": "node --disable-warning=MODULE_TYPELESS_PACKAGE_JSON --test src/lib/*.test.mjs",
"lint": "eslint"
},
"dependencies": {
"@google/generative-ai": "^0.24.0",
"bcryptjs": "^3.0.3",
"cheerio": "^1.2.0",
"dompurify": "^3.4.13",
"dotenv": "^17.2.3",
"fflate": "^0.8.2",
"framer-motion": "^12.23.26",
"fs-extra": "^11.2.0",
"hermes-parser": "^0.36.1",
"limiter": "^3.0.0",
"minisearch": "^7.2.0",
"mongoose": "^9.1.0",
"next": "^16.2.12",
"next-auth": "^4.24.15",
"nodemailer": "^9.0.1",
"nspell": "^2.1.5",
"otzaria-plugin-validator": "github:Otzaria/otzaria-plugin-validator#v1",
"pdf-lib": "^1.17.1",
"pdf-to-img": "^6.0.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-is": "^19.2.5",
"react-markdown": "^10.1.0",
"recharts": "^3.6.0",
"remark-gfm": "^4.0.1",
"sanitize-html": "^2.17.6",
"sharp": "^0.35.3",
"slugify": "^1.6.6",
"tesseract.js": "^7.0.0",
"zod": "^4.3.6"
},
"overrides": {
"brace-expansion": "^2.0.2"
},
"devDependencies": {
"@babel/core": "^7.29.7",
"@babel/preset-react": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@tailwindcss/postcss": "^4.1.18",
"@types/babel__core": "^7.20.5",
"@types/node": "^25.0.3",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.1.1",
"eslint-plugin-security": "^4.0.0",
"tailwindcss": "^4",
"typescript": "^5"
}
}