This commit is contained in:
Morten Olsen
2023-03-26 22:15:07 +02:00
commit 9b1a067d56
80 changed files with 7889 additions and 0 deletions

62
package.json Normal file
View File

@@ -0,0 +1,62 @@
{
"name": "web2",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "ts-node ./bin/index.ts build",
"dev": "ts-node ./bin/index.ts dev"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@rollup/plugin-alias": "^4.0.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-sucrase": "^5.0.1",
"@rollup/plugin-typescript": "^11.0.0",
"chroma-js": "^2.4.2",
"commander": "^10.0.0",
"ejs": "^3.1.9",
"eventemitter3": "^5.0.0",
"express": "^4.18.2",
"fast-glob": "^3.2.12",
"glob-watcher": "^5.0.5",
"gray-matter": "^4.0.3",
"html-entities": "^2.3.3",
"marked": "^4.2.12",
"node-latex": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet-async": "^1.3.0",
"react-markdown": "^6.0.3",
"remark": "^13",
"rollup": "^3.20.0",
"rollup-plugin-external-globals": "^0.7.3",
"sharp": "^0.31.3",
"styled-components": "^5.3.9",
"tslib": "^2.5.0",
"unist-util-visit": "^2.0.3",
"yaml": "^2.2.1"
},
"devDependencies": {
"@types/chroma-js": "^2.4.0",
"@types/ejs": "^3.1.2",
"@types/express": "^4.17.17",
"@types/glob-watcher": "^5.0.2",
"@types/jest": "^29.5.0",
"@types/marked": "^4.0.8",
"@types/node": "^18.15.3",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/sharp": "^0.31.1",
"@types/styled-components": "^5.1.26",
"jest": "^29.5.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
}
}