-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.35 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.35 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
{
"name": "calls-for-papers",
"version": "0.1.0",
"description": "Find calls for papers in one location.",
"scripts": {
"clean": "rm -rf public",
"start": "eleventy --serve & tailwind -i www/public/css/tailwind.css -o public/public/css/style.css --watch",
"build": "ELEVENTY_PRODUCTION=true eleventy && NODE_ENV=production tailwind -i www/public/css/tailwind.css -o public/public/css/style.css --minify",
"scrape": "node ./scrapers/scraper.mjs",
"rss": "node ./scrapers/feedgen.mjs",
"test": "node --env-file .env ./scrapers/scraper.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/julianprester/calls-for-papers.git"
},
"keywords": [
"calls-for-papers",
"special-issues",
"academia",
"research",
"science"
],
"author": "Julian Prester",
"bugs": {
"url": "https://github.com/julianprester/calls-for-papers/issues"
},
"homepage": "https://callsforpapers.org",
"type": "module",
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
"alpinejs": "^3.14.8",
"daisyui": "^4.12.23",
"tailwindcss": "^3.4.17"
},
"dependencies": {
"chrono-node": "^2.7.7",
"feed": "^4.2.2",
"mammoth": "^1.9.0",
"openai": "^4.79.1",
"patchright": "^1.49.2",
"pdfjs-dist": "^4.10.38",
"slugify": "^1.6.6",
"turndown": "^7.2.0",
"zod": "^3.24.1"
}
}