-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
121 lines (121 loc) · 3.6 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@leopardslab/react-email",
"version": "1.15.6",
"description": "React-based component and utility methods-based lightweight library to provide a common interface for email building",
"author": {
"name": "Leopards Lab",
"url": "https://github.com/leopardslab"
},
"repository": {
"type": "git",
"url": "https://github.com/leopardslab/react-email.git"
},
"bugs": {
"url": "https://github.com/leopardslab/react-email/issues"
},
"homepage": "https://github.com/leopardslab/react-email#readme",
"license": "Apache-2.0",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepare": "husky install",
"build": "rm -rf dist && yarn build:esm && yarn build:cjs && yarn fixup",
"build:esm": "tsc -p tsconfig-build.json",
"build:cjs": "tsc -p tsconfig-build.json --module commonjs --outDir dist/cjs --target es2015",
"fixup": "chmod u+rx ./fixup.sh && ./fixup.sh",
"watch": "tsc --watch",
"test": "jest --testPathPattern=src",
"test-storybook": "test-storybook",
"cm": "cz -s",
"lint": "eslint src/**",
"lint:fix": "eslint --fix src/**",
"pretty": "prettier --check .",
"pretty:fix": "prettier --write .",
"lint-staged": "lint-staged",
"release": "semantic-release --branches main",
"storybook": "start-storybook -p 6006",
"build:storybook": "build-storybook -o storybook",
"build:typedoc": "typedoc",
"build:docs": "chmod u+rx ./build-docs.sh && ./build-docs.sh"
},
"lint-staged": {
"src/**": [
"yarn pretty:fix",
"yarn lint:fix",
"yarn pretty",
"yarn lint"
]
},
"dependencies": {
"html-to-text": "^8.2.1"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8"
},
"devDependencies": {
"@babel/core": "^7.18.5",
"@babel/preset-env": "^7.18.6",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.17.12",
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@storybook/addon-actions": "^6.5.9",
"@storybook/addon-docs": "^6.5.9",
"@storybook/addon-essentials": "^6.5.9",
"@storybook/addon-interactions": "^6.5.9",
"@storybook/addon-links": "^6.5.9",
"@storybook/builder-webpack4": "^6.5.9",
"@storybook/manager-webpack4": "6.5.9",
"@storybook/react": "^6.5.9",
"@storybook/test-runner": "^0.7.0",
"@storybook/testing-library": "^0.0.13",
"@types/html-to-text": "^8.1.0",
"@types/jest": "^28.1.3",
"@types/node": "^18.0.0",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"babel-jest": "^28.1.1",
"babel-loader": "^8.2.5",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.0",
"jest": "^28.1.1",
"lint-staged": "^13.0.2",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"semantic-release": "^19.0.3",
"typedoc": "^0.23.10",
"typescript": "^4.7.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"keywords": [
"react",
"react-package",
"react-email",
"email-builder",
"react-email-builder",
"html-email"
]
}