forked from zalify/easy-email-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.26 KB
/
package.json
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": "easy-email",
"scripts": {
"install-all": "lerna exec -- yarn --force && cd demo && yarn --force",
"vercel-install": "lerna exec -- yarn install --network-concurrency 1 && cd demo && yarn install --network-concurrency 1",
"build": "yarn build:core && yarn build:editor && yarn build:extensions",
"build:core": "cd packages/easy-email-core && yarn build",
"build:editor": "cd packages/easy-email-editor && yarn build",
"build:extensions": "cd packages/easy-email-extensions && yarn build",
"dev": "cd demo && yarn dev",
"demo": "cd demo && yarn build",
"test": "yarn test:core && yarn test:extensions",
"test:core": "cd packages/easy-email-core && yarn test",
"test:extensions": "cd packages/easy-email-extensions && yarn test",
"translate": "ts-node scripts/translate.ts",
"lint": "lerna exec -- yarn format"
},
"dependencies": {
"@sendgrid/mail": "^7.7.0",
"@types/file-saver": "^2.0.5",
"easy-localized-translation": "^1.1.0",
"file-saver": "^2.0.5",
"lerna": "^4.0.0",
"liquidjs": "^9.34.1"
},
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@types/lodash": "^4.14.191",
"@types/node": "^18.8.4",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"dotenv": "^16.0.3"
}
}