-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.19 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.19 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
73
74
75
{
"name": "notes2",
"version": "0.1.0",
"license": "Polyform-Noncommercial-1.0.0",
"private": true,
"scripts": {
"dev": "next dev -p ${PORT:-3020}",
"build": "next build",
"start": "next start -p ${PORT:-3020}",
"lint": "next lint",
"ingest": "npx ts-node -r tsconfig-paths/register --project tsconfig.scripts.json scripts/ingest.ts",
"check-translations": "npx ts-node -r tsconfig-paths/register --project tsconfig.scripts.json scripts/check-translations.ts"
},
"dependencies": {
"@babel/parser": "^7.27.5",
"@babel/traverse": "^7.27.4",
"@expressive-code/plugin-collapsible-sections": "^0.41.6",
"@mdx-js/mdx": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"acorn": "^8.15.0",
"antd": "^5.26.3",
"async-mutex": "^0.5.0",
"chokidar": "^5.0.0",
"commander": "^14.0.0",
"dotenv": "^17.2.1",
"exceljs": "^4.4.0",
"gray-matter": "^4.0.3",
"jszip": "^3.10.1",
"markdown-it": "^12.3.2",
"mime": "^4.0.7",
"mime-types": "^3.0.1",
"next": "^16.1.7",
"nodemailer": "^8.0.5",
"probe-image-size": "^7.2.3",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-icons": "^5.5.0",
"react-toastify": "^11.0.5",
"rehype-expressive-code": "^0.41.6",
"rehype-katex": "^7.0.1",
"remark-math": "^6.0.0",
"sass": "^1.89.1",
"slugify": "^1.6.6",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0",
"uuid": "^11.1.0",
"uuid-by-string": "^4.0.0",
"ws": "^8.18.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4.1.8",
"@tailwindcss/typography": "^0.5.16",
"@types/babel__traverse": "^7.20.7",
"@types/js-yaml": "^4.0.9",
"@types/mime-types": "^3.0.1",
"@types/node": "24",
"@types/nodemailer": "^6.4.17",
"@types/probe-image-size": "^7.2.5",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/ws": "^8.18.1",
"autoprefixer": "^10.4.21",
"eslint": "^9",
"eslint-config-next": "15.3.2",
"postcss": "^8.5.4",
"tailwindcss": "^4.1.8",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.8.3"
}
}