-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.43 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.43 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
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
{
"name": "react-mailkit",
"version": "0.0.1",
"bugs": {
"url": "https://github.com/pavkout/react-mailkit/issues"
},
"description": "Create awesome and fully responsive emails without stress.",
"repository": "git@github.com:pavkout/react-mailkit.git",
"author": "Pavlos Koutoglou <pkoutoglou@gmail.com>",
"contributors": [
"Pavlos Koutoglou"
],
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "lerna bootstrap",
"clean": "lerna run clean",
"build:declarations": "lerna run --parallel 'build:declaration'",
"build": "lerna run --parallel 'build'",
"dev": "lerna run --parallel 'dev'",
"postbuild": "yarn build:declarations",
"prerelease": "yarn build",
"release": "lerna publish",
"test": "jest",
"tsc": "tsc",
"prepare": "husky install"
},
"resolutions": {
"babel-core": "^7.0.0-bridge.0"
},
"peerDependencies": {
"react": "16.13.1>=",
"react-dom": "16.13.1>="
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.18.2",
"@babel/node": "^7.17.10",
"@babel/plugin-proposal-class-properties": "^7.17.12",
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"@babel/preset-typescript": "^7.17.12",
"@babel/runtime-corejs3": "^7.18.3",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@types/enzyme": "^3.10.9",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^27.0.1",
"@types/lodash.camelcase": "^4.3.6",
"@types/lodash.capitalize": "^4.2.6",
"@types/lodash.map": "^4.6.13",
"@types/lodash.upperfirst": "^4.3.6",
"@types/react": "^17.0.19",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"babel-core": "7.0.0-bridge.0",
"babel-loader": "^8.2.2",
"commitizen": "^4.2.4",
"css-loader": "^5.2.4",
"cz-lerna-changelog": "^2.0.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.25.1",
"html-webpack-plugin": "^5.3.2",
"husky": "^7.0.2",
"image-webpack-loader": "^7.0.1",
"jest": "^27.1.0",
"lerna": "^4.0.0",
"lint-staged": "^11.1.2",
"lodash.camelcase": "^4.3.0",
"lodash.capitalize": "^4.2.1",
"lodash.map": "^4.6.0",
"lodash.upperfirst": "^4.3.1",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.56.3",
"rollup-plugin-dts": "^4.0.0",
"rollup-plugin-polyfill-node": "^0.7.0",
"rollup-plugin-terser": "^7.0.2",
"style-loader": "^3.2.1",
"ts-jest": "^27.0.5",
"typescript": "^4.4.2",
"webpack": "^5.51.2",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.1.0",
"webpack-manifest-plugin": "^4.0.2",
"workbox-webpack-plugin": "^6.2.4"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-lerna-changelog"
}
}
}