-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
125 lines (125 loc) · 3.31 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
122
123
124
125
{
"name": "@flowbuild/react-mqtt-workflow-manager",
"version": "1.0.0",
"license": "MIT",
"description": "A react wrapper manager for MQTT",
"repository": "https://github.com/flow-build/react-mqtt-workflow-manager",
"homepage": "https://github.com/flow-build/react-mqtt-workflow-manager/#readme",
"author": {
"name": "Wallace Ferreira",
"url": "https://github.com/wallace-sf"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"keywords": [
"react",
"mqtt",
"workflow",
"manager"
],
"files": [
"dist"
],
"engines": {
"node": ">=10"
},
"publishConfig": {
"access": "public"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"scripts": {
"dev": "tsdx watch",
"build": "rimraf dist/ && tsdx build",
"test": "jest",
"lint": "eslint --fix",
"lint:check": "eslint",
"fmt": "prettier --write src/**/*.{ts,tsx}",
"fmt:check": "prettier --check src/**/*.{ts,tsx}",
"prepare": "tsdx build && husky install",
"size": "size-limit",
"analyze": "size-limit --why",
"release": "semantic-release",
"get-version": "echo $npm_package_version"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"module": "dist/react-mqtt-workflow-manager.esm.js",
"size-limit": [
{
"path": "dist/react-mqtt-workflow-manager.cjs.production.min.js",
"limit": "100 kB"
},
{
"path": "dist/react-mqtt-workflow-manager.esm.js",
"limit": "100 kB"
}
],
"devDependencies": {
"@babel/core": "^7.21.0",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@size-limit/esbuild-why": "^8.2.4",
"@size-limit/preset-small-lib": "^8.2.4",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.4.0",
"@types/node": "^18.14.6",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"babel-loader": "^9.1.2",
"conventional-changelog-conventionalcommits": "^5.0.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-import-helpers": "^1.3.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-sonarjs": "^0.19.0",
"husky": "^8.0.3",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"rimraf": "^4.1.2",
"semantic-release": "^20.1.1",
"size-limit": "^8.2.4",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"tsdx": "^0.14.1",
"tslib": "^2.5.0",
"typescript": "^4.9.5"
},
"dependencies": {
"@reduxjs/toolkit": "^1.9.3",
"mqtt-browser": "^4.3.7",
"mqtt-pattern": "^2.0.0",
"react-redux": "^8.0.5",
"tiny-warning": "^1.0.3"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"yarn lint",
"yarn fmt"
]
}
}