-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.73 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.73 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
{
"name": "squiggle-website",
"version": "3.0.0",
"private": true,
"license": "MIT",
"engines": {
"node": "22.x"
},
"scripts": {
"dev": "next dev --turbo",
"lint": "pnpm lint:prettier && pnpm eslint",
"lint:prettier": "prettier --check .",
"eslint": "ESLINT_USE_FLAT_CONFIG=false NODE_NO_WARNINGS=1 eslint src",
"format": "prettier --write .",
"gen:docsForLLM": "tsx scripts/compileDocsForLLM.mts",
"build": "next build"
},
"dependencies": {
"@content-collections/mdx": "^0.2.2",
"@fumadocs/content-collections": "^1.1.5",
"@quri/content": "workspace:*",
"@quri/hub-linker": "workspace:^",
"@quri/squiggle-components": "workspace:*",
"@quri/squiggle-lang": "workspace:*",
"@quri/ui": "workspace:*",
"@quri/versioned-squiggle-components": "workspace:*",
"@vercel/analytics": "^1.5.0",
"base64-js": "^1.5.1",
"clsx": "^2.1.1",
"fumadocs-core": "14.0.2",
"fumadocs-ui": "14.0.2",
"katex": "^0.16.21",
"next": "15.2.6",
"pako": "^2.1.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-icons": "^5.5.0",
"rehype-katex": "^7.0.1",
"rehype-pretty-code": "^0.14.1",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"shiki": "^0.14.7",
"zod": "^3.24.2"
},
"devDependencies": {
"@mdx-js/typescript-plugin": "^0.0.8",
"@quri/configs": "workspace:*",
"@quri/squiggle-textmate-grammar": "workspace:*",
"@types/mdx": "^2.0.13",
"@types/pako": "^2.0.3",
"@types/react": "^19.1.0",
"autoprefixer": "^10.4.21",
"eslint": "^9.23.0",
"eslint-config-next": "^15.2.4",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"tailwindcss": "^3.4.14",
"tsx": "^4.19.3",
"typescript": "^5.8.2"
}
}