forked from frappe/mail
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.13 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.13 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
{
"name": "mail",
"version": "1.0.0",
"type": "module",
"scripts": {
"test-local": "cypress open --e2e --browser chrome",
"postinstall": "cd frontend && yarn install --check-files",
"dev": "cd frontend && yarn dev",
"build": "yarn build-app && yarn build-email-css",
"build-email-css": "npx tailwindcss -i ./mail/public/email/style.css -o ./mail/public/css/email.css --config ./mail/public/email/tailwind.config.js",
"build-app": "cd frontend && yarn build"
},
"repository": "https://github.com/frappe/mail",
"author": "Frappe",
"license": "AGPL-3.0-or-later",
"devDependencies": {
"@eslint/js": "^9.20.0",
"eslint": "^9.20.0",
"eslint-config-prettier": "^10.0.1",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-vue": "^9.32.0",
"globals": "^15.14.0",
"prettier": "^3.5.0",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^3",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.0",
"vue-eslint-parser": "^9.4.3"
}
}