Adam Goldsmith
98065af7d5
Using puppeteer to render the page server side, as FullCalendar 6 dropped support for ES5, and polyfilling everything was becoming basically impossible
21 lines
434 B
JSON
21 lines
434 B
JSON
{
|
|
"type": "module",
|
|
"exports": "./server.js",
|
|
"dependencies": {
|
|
"express": "^4.18.2",
|
|
"puppeteer": "^21.1.1"
|
|
},
|
|
"scripts": {
|
|
"start": "npm run dev",
|
|
"dev": "tsx watch --clear-screen=false ./src/server.ts",
|
|
"build": "tsc",
|
|
"serve": "node dist/server.js"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^4.17.17",
|
|
"@types/node": "^20.5.7",
|
|
"tsx": "^3.12.7",
|
|
"typescript": "^5.2.2"
|
|
}
|
|
}
|