-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.08 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.08 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
{
"name": "web",
"version": "2.0.0",
"private": true,
"scripts": {
"build": "cross-env NODE_OPTIONS='--max-old-space-size-percentage=75' next build --webpack",
"clean": "rimraf .turbo .next out node_modules",
"dev": "next dev --webpack",
"fix:docs": "bun ./scripts/fix-api-reference.mts",
"lint": "next lint",
"start": "next start",
"_test": "node --test ./src/mdx/search.test.mjs"
},
"browserslist": [
"baseline newly available",
"maintained node versions"
],
"dependencies": {
"@algolia/autocomplete-core": "^1.19.4",
"@evolu/common": "workspace:*",
"@evolu/react": "workspace:*",
"@evolu/react-web": "workspace:*",
"@evolu/sqlite-wasm": "2.2.4",
"@evolu/web": "workspace:*",
"@headlessui/react": "^2.2.9",
"@headlessui/tailwindcss": "^0.2.2",
"@mdx-js/loader": "^3.1.1",
"@mdx-js/mdx": "^3.1.0",
"@mdx-js/react": "^3.1.1",
"@next/mdx": "^16.1.3",
"@sindresorhus/slugify": "^3.0.0",
"@tabler/icons-react": "^3.36.1",
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/postcss": "^4.1.18",
"@tailwindcss/typography": "^0.5.19",
"acorn": "^8.15.0",
"clsx": "^2.1.1",
"fast-glob": "^3.3.3",
"flexsearch": "^0.8.212",
"mdast-util-to-string": "^4.0.0",
"mdx-annotations": "^0.1.4",
"motion": "^12.30.0",
"next": "^16.1.3",
"next-themes": "^0.4.6",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-highlight-words": "^0.21.0",
"remark": "^15.0.1",
"remark-gfm": "^4.0.1",
"remark-mdx": "^3.1.1",
"rss": "^1.2.2",
"shiki": "^3.22.0",
"simple-functional-loader": "^1.2.1",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3",
"unist-util-filter": "^5.0.1",
"unist-util-visit": "^5.0.0",
"zustand": "^5.0.10"
},
"devDependencies": {
"@evolu/tsconfig": "workspace:*",
"@types/mdx": "^2.0.13",
"@types/node": "^24.10.9",
"@types/react": "~19.2.11",
"@types/react-dom": "~19.2.3",
"@types/react-highlight-words": "^0.20.1",
"@types/rss": "^0.0.32",
"cross-env": "^10.1.0",
"sharp": "^0.34.5"
}
}