Files
twenty/packages/twenty-emails/package.json
Thaïs a654205dbc chore: set up twenty-emails config so build isn't needed in development (#3619)
* chore: set up twenty-emails config so build isn't needed in development

* fix: fix script dependency

* chore: use @vitejs/plugin-react-swc

* Remove useless dependancy

* Fix typing

* chore: use baseUrl in twenty-emails

* chore: fix docker server prod build

* refactor: optimize Docker file and tsconfig

* fix: fix WORKDIR in docker

---------

Co-authored-by: martmull <martmull@hotmail.fr>
2024-01-29 06:17:12 -03:00

39 lines
838 B
JSON

{
"name": "twenty-emails",
"version": "0.1.0",
"description": "",
"author": "",
"private": true,
"license": "AGPL-3.0",
"main": "./dist/index.js",
"scripts": {
"nx": "NX_DEFAULT_PROJECT=twenty-emails node ../../node_modules/nx/bin/nx.js",
"build": "vite build",
"lint": "eslint"
},
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"devDependencies": {
"@nx/vite": "17.2.8",
"@vitejs/plugin-react-swc": "^3.5.0",
"vite": "^5.0.0",
"vite-plugin-dts": "~2.3.0",
"vite-tsconfig-paths": "^4.2.1"
},
"dependencies": {
"@react-email/components": "0.0.12",
"date-fns": "^2.30.0"
},
"engines": {
"node": "^18.17.1",
"npm": "please-use-yarn",
"yarn": "^4.0.2"
},
"nx": {
"projectType": "library"
}
}