-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.15 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 3.15 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@quantecon/lecture-theme",
"version": "3.0.0",
"private": true,
"sideEffects": false,
"scripts": {
"postinstall": "patch-package --patch-dir patches",
"compile": "tsc --noEmit --skipLibCheck",
"build:css": "tailwindcss -m -i ./styles/app.css -o app/styles/app.css",
"dev:copy": "cp remix.config.dev.js remix.config.js",
"prod:copy": "cp remix.config.prod.js remix.config.js",
"clean": "rimraf public/build build api",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"build:thebe": "copy-thebe-assets ./public",
"prod:build": "npm run prod:copy && npm run build:thebe && npm run build:css && remix build && node scripts/relative-css-asset-urls.mjs",
"dev:css": "tailwindcss -w -i ./styles/app.css -o app/styles/app.css",
"dev": "npm run dev:copy && npm run build:thebe && concurrently \"npm run dev:css\" \"remix dev\"",
"start": "npm run build:css && remix dev",
"test:unit": "node --test \"tests/unit/**/*.test.mjs\"",
"test:visual": "playwright test",
"test:visual:update": "playwright test --update-snapshots",
"test:plugin": "node --test \"tests/plugin/**/*.test.mjs\"",
"test:fouc": "playwright test --project=webkit-fouc"
},
"dependencies": {
"@fontsource-variable/source-sans-3": "^5.3.0",
"@fontsource/pt-serif": "^5.3.0",
"@heroicons/react": "^2.2.0",
"@myst-theme/common": "^1.3.0",
"@myst-theme/icons": "^1.3.0",
"@myst-theme/jupyter": "^1.3.0",
"@myst-theme/providers": "^1.3.0",
"@myst-theme/search": "^1.3.0",
"@myst-theme/search-minisearch": "^1.3.0",
"@myst-theme/site": "^1.3.0",
"@myst-theme/styles": "^1.3.0",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.6",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-tooltip": "^1.1.8",
"@radix-ui/react-visually-hidden": "^1.2.4",
"@remix-run/node": "~1.17.0",
"@remix-run/react": "~1.17.0",
"@remix-run/vercel": "~1.17.0",
"katex": "^0.16.21",
"lucide-react": "^0.475.0",
"myst-common": "^1.9.5",
"myst-config": "^1.9.5",
"myst-to-react": "^1.3.0",
"node-fetch": "^2.7.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"yaml": "^2.9.0"
},
"devDependencies": {
"@playwright/test": "^1.49.0",
"@remix-run/dev": "~1.17.0",
"@remix-run/eslint-config": "~1.17.0",
"@remix-run/serve": "~1.17.0",
"@tailwindcss/typography": "^0.5.16",
"@types/lodash.throttle": "^4.1.9",
"@types/node-fetch": "^2.6.12",
"@types/react": "^18.2.24",
"@types/react-dom": "^18.2.8",
"@vercel/node": "^2.15.1",
"concurrently": "^9.1.2",
"patch-package": "^8.0.0",
"prettier": "latest",
"tailwindcss": "^3.4.17",
"typescript": "~5.9.0"
},
"overrides": {
"prismjs": "^1.30.0",
"katex": "$katex",
"uuid": "^11.1.1",
"ajv": "^8.18.0",
"cookie": "^0.7.0",
"shell-quote": "^1.10.0",
"ws@^8.0.0": "^8.20.1",
"brace-expansion@^1.0.0": "^1.1.18",
"brace-expansion@^5.0.0": "^5.0.9",
"js-yaml@^3.0.0": "^3.15.0",
"js-yaml@^4.0.0": "^4.3.0",
"sanitize-html": "2.17.5",
"@babel/core": "^7.29.6"
},
"engines": {
"node": ">=20"
}
}