-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.7 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
{
"name": "latex2js.com",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev --port 5007",
"build": "next build && pnpm run generate:llm-md && pnpm run seo",
"start": "next start",
"test": "jest",
"test:watch": "jest --watch",
"test:update": "jest --updateSnapshot",
"seo": "tsx src/seo/seo.ts",
"generate:llm-md": "tsx scripts/generate-llm-markdown.ts",
"deploy": "AWS_PROFILE=pyramation aws s3 sync out/ s3://latex2js.com --exclude \"*.md\" --exclude \"llms.txt\" && pnpm run deploy:md",
"deploy:md": "AWS_PROFILE=pyramation aws s3 cp out/ s3://latex2js.com --recursive --exclude \"*\" --include \"*.md\" --include \"llms.txt\" --content-type \"text/plain; charset=utf-8\"",
"deploy:all": "pnpm run build && pnpm run deploy && ./src/seo/prepare.sh && pnpm run invalidate",
"invalidate": "AWS_PROFILE=pyramation aws cloudfront create-invalidation --distribution-id E2IV32FSPB7S79 --paths \"/*\""
},
"engines": {
"node": ">=22",
"pnpm": ">=10"
},
"dependencies": {
"@codemirror/language": "6.12.4",
"@codemirror/lint": "6.9.7",
"@codemirror/legacy-modes": "6.5.3",
"@uiw/react-codemirror": "4.25.11",
"jsonldjs": "^0.1.2",
"latex2js": "4.5.0",
"latex2react": "4.4.3",
"next": "16.1.6",
"next-seo": "^6.8.0",
"react": "19.2.4",
"react-dom": "19.2.4"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.19.7",
"@types/react": "19.2.10",
"@types/react-dom": "19.2.3",
"autoprefixer": "^10.4.24",
"glob": "^11.1.0",
"jest": "^29.7.0",
"mkdirp": "^3.0.1",
"postcss": "^8.5.6",
"schema-dts": "^1.1.5",
"tailwindcss": "^3.4.19",
"ts-jest": "^29.4.6",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}