-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.99 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.99 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "@usewaypoint/email-builder-project",
"target": "ES2022",
"files": [
"dist"
],
"private": true,
"dependencies": {
"@aws-sdk/client-s3": "^3.758.0",
"@aws-sdk/s3-request-presigner": "^3.758.0"
},
"packageManager": "npm@10.4.0",
"workspaces": [
"packages/block-avatar",
"packages/block-button",
"packages/block-columns-container",
"packages/block-container",
"packages/block-divider",
"packages/block-heading",
"packages/block-html",
"packages/block-image",
"packages/block-social",
"packages/block-spacer",
"packages/block-text",
"packages/document-core",
"packages/email-builder",
"examples/*"
],
"scripts": {
"build:packages": "npm -w packages/block-avatar run build && npm -w packages/block-button run build && npm -w packages/block-columns-container run build && npm -w packages/block-container run build && npm -w packages/block-divider run build && npm -w packages/block-heading run build && npm -w packages/block-html run build && npm -w packages/block-image run build && npm -w packages/block-social run build && npm -w packages/block-spacer run build && npm -w packages/block-text run build && npm -w packages/document-core run build && npm -w packages/email-builder run build",
"build:app": "npm -w examples/vite-emailbuilder-mui run build",
"build": "npm run build:packages && npm run build:app",
"test": "npx jest"
},
"author": "carlos@usewaypoint.com",
"license": "MIT",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@testing-library/react": "^16.3.2",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"eslint": "^8.56.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^11.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.2.5",
"react-test-renderer": "^18.2.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typescript": "^5.3.3"
}
}