-
-
Notifications
You must be signed in to change notification settings - Fork 349
/
package.json
36 lines (36 loc) · 1.37 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
34
35
36
{
"name": "easy-email",
"scripts": {
"install-all": "lerna exec -- pnpm install && cd demo && pnpm install",
"vercel-install": "lerna exec -- pnpm install && cd demo && pnpm install",
"build": "pnpm run build:core && pnpm run build:editor && pnpm run build:extensions",
"build:core": "cd packages/easy-email-core && pnpm run build",
"build:editor": "cd packages/easy-email-editor && pnpm run build",
"build:extensions": "cd packages/easy-email-extensions && pnpm run build",
"dev": "cd demo && pnpm run dev",
"demo": "cd demo && pnpm run build",
"demo2": "cd nextjs-demo && pnpm run build",
"test": "pnpm run test:core && pnpm run test:extensions",
"test:core": "cd packages/easy-email-core && pnpm run test",
"test:extensions": "cd packages/easy-email-extensions && pnpm run test",
"translate": "ts-node scripts/translate.ts",
"lint": "lerna exec -- pnpm run format"
},
"dependencies": {
"@sendgrid/mail": "^7.7.0",
"@types/file-saver": "^2.0.5",
"cloudinary": "^1.41.2",
"easy-localized-translation": "^1.1.0",
"file-saver": "^2.0.5",
"lerna": "^4.0.0",
"liquidjs": "^9.34.1",
"posthog-js": "^1.76.0"
},
"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"
}
}