mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-02-06 22:00:09 +00:00
20 lines
581 B
JSON
20 lines
581 B
JSON
{
|
|
"name": "baserow_email_compiler",
|
|
"description": "A simple script which looks for all .mjml.eta files in the backend and compiles them to django templates ready for emailing.",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"main": "baserowEmailCompiler.js",
|
|
"dependencies": {
|
|
"chalk": "^5.0.0",
|
|
"chokidar": "^3.5.3",
|
|
"eta": "^1.12.3",
|
|
"glob": "^7.2.0",
|
|
"mjml": "^4.12.0"
|
|
},
|
|
"author": "Bram Wiepjes (Baserow)",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"watch": "node ./baserowEmailCompiler.js watch",
|
|
"compile": "node ./baserowEmailCompiler.js"
|
|
}
|
|
}
|