-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.67 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 3.67 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
91
92
93
94
95
96
97
98
99
100
101
{
"name": "shapeshift",
"version": "1.19.2",
"description": "Scalable, distributed system for extracting and transforming LibreTexts content into various export formats.",
"main": "index.js",
"type": "module",
"scripts": {
"dev:api": "tsx watch --clear-screen=false src/workers/api.ts",
"dev:processor": "tsx watch --clear-screen=false src/workers/processor.ts",
"build": "rimraf ./build && tsdown src/workers/api.ts src/workers/processor.ts --format esm --dts -d ./build --root src --fail-on-warn && tsc-alias && cp -r src/styles build/styles && cp -r src/public build/public",
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky",
"prettier": "prettier --config .prettierrc 'src/**/*.ts' --write",
"sync-db-schema": "tsx src/syncDBSchema.ts",
"build-final-cover": "tsx src/buildFinalCover.ts",
"migrate": "tsx",
"build-backlog-per-instance": "rimraf ./bpi-dist && npx esbuild src/lambda/backlogPerInstance.ts --bundle --platform=node --target=node22 --format=cjs --outfile=bpi-dist/backlogPerInstance.js --minify --tree-shaking=true && cd bpi-dist && zip -9 -r ../backlogPerInstance.zip backlogPerInstance.js",
"make-test-pdf": "tsx src/makeTestPDF.ts"
},
"author": "LibreTexts <info@libretexts.org>",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"@types/archiver": "^7.0.0",
"@types/aws-lambda": "^8.10.133",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/js-beautify": "^1.14.3",
"@types/jsdom": "^28.0.3",
"@types/node": "^20.19.8",
"@types/validator": "^13.15.2",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"esbuild": "^0.28.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"inquirer": "^12.7.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"semantic-release": "^25.0.2",
"tsc-alias": "^1.8.16",
"tsdown": "^0.21.9",
"tsx": "^4.22.4",
"typescript": "^5.3.3"
},
"dependencies": {
"@asteasolutions/zod-to-openapi": "^8.5.0",
"@aws-sdk/client-cloudwatch": "^3.995.0",
"@aws-sdk/client-ecs": "^3.995.0",
"@aws-sdk/client-s3": "^3.995.0",
"@aws-sdk/client-sqs": "^3.995.0",
"@aws-sdk/client-ssm": "^3.995.0",
"@aws-sdk/lib-storage": "^3.910.0",
"@libretexts/cxone-expert-node": "1.6.0",
"@mathjax/mathjax-mhchem-font-extension": "^4.1.1",
"@mathjax/src": "^4.1.3",
"@pdf-lib/fontkit": "^1.1.1",
"@scalar/express-api-reference": "^0.10.5",
"@types/bcrypt": "^6.0.0",
"@types/qrcode": "^1.5.6",
"archiver": "^7.0.1",
"axios": "^1.18.0",
"bcrypt": "^6.0.0",
"cheerio": "^1.2.0",
"chromiumly": "^4.2.0",
"cors": "^2.8.5",
"dotenv": "^17.1.0",
"express": "^5.2.0",
"express-rate-limit": "^8.6.0",
"fast-xml-parser": "^5.11.1",
"helmet": "^8.1.0",
"html-entities": "^2.6.0",
"js-beautify": "^1.15.4",
"jsdom": "^29.1.1",
"loglayer": "^9.1.0",
"mime": "^4.1.0",
"mongodb": "^7.1.1",
"mysql2": "^3.22.3",
"p-limit": "^7.3.0",
"pdf-lib": "^1.17.1",
"prince": "^1.14.8",
"puppeteer": "^24.22.3",
"qr-code-styling-node": "^1.5.0",
"qrcode": "^1.5.4",
"rate-limiter-flexible": "^7.1.1",
"reflect-metadata": "^0.2.2",
"sequelize": "^6.37.8",
"sequelize-typescript": "^2.1.6",
"sharp": "^0.35.3",
"uuid": "^14.0.0",
"xml-formatter": "^3.6.6",
"yargs": "^17.7.2",
"zod": "^4.1.12"
}
}