dphelper 0.2.100 → 0.2.101
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +0 -8
- package/package.json +140 -58
- package/index.js +0 -2
package/LICENSE.md
CHANGED
package/package.json
CHANGED
|
@@ -1,44 +1,58 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dphelper",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.101",
|
|
4
4
|
"description": "Developer Tools by Dario Passariello",
|
|
5
5
|
"deprecated": false,
|
|
6
|
-
"
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
"react-dom": false
|
|
21
|
-
},
|
|
22
|
-
"isLibrary": true
|
|
23
|
-
}
|
|
6
|
+
"app": {
|
|
7
|
+
"port": 3000,
|
|
8
|
+
"code": "dphelper",
|
|
9
|
+
"name": "dphelper",
|
|
10
|
+
"type": "beta",
|
|
11
|
+
"folder": "/",
|
|
12
|
+
"appPort": "",
|
|
13
|
+
"main": "index.tsx",
|
|
14
|
+
"target": "web"
|
|
15
|
+
},
|
|
16
|
+
"api": {
|
|
17
|
+
"folder": "api",
|
|
18
|
+
"dev": "",
|
|
19
|
+
"prod": ""
|
|
24
20
|
},
|
|
25
21
|
"engines": {
|
|
26
|
-
"node": ">=12
|
|
22
|
+
"node": ">=12"
|
|
27
23
|
},
|
|
24
|
+
"overrides": {},
|
|
28
25
|
"scripts": {
|
|
29
26
|
"make-dist": "webpack --progress --color --mode production --config webpack.config.js",
|
|
30
|
-
"backup": "mcp/backup/run.bat",
|
|
31
|
-
"git": "cd mcp/node && node gitDeploy",
|
|
32
|
-
"git-tag": "cd mcp/node && node createTag",
|
|
33
27
|
"goLive": "cd mcp/node && node goLive",
|
|
28
|
+
">-----------------": "",
|
|
29
|
+
"backup": "cd mcp/backup && run.bat",
|
|
30
|
+
"git": "cd mcp/node && node gitDeploy",
|
|
31
|
+
">----------------": "",
|
|
34
32
|
"node:update": "cd mcp/node && node npmUpdate",
|
|
35
|
-
"test:lint": "eslint {
|
|
33
|
+
"test:lint": "eslint {/src/**/*,*}.{js,ts,jsx,tsx} --fix"
|
|
36
34
|
},
|
|
37
35
|
"eslintConfig": {
|
|
38
36
|
"globals": {
|
|
37
|
+
"globalThis": true,
|
|
38
|
+
"jQuery": true,
|
|
39
|
+
"$": true,
|
|
39
40
|
"window": true,
|
|
40
|
-
"dphelper": true
|
|
41
|
-
|
|
41
|
+
"dphelper": true,
|
|
42
|
+
"menupro": true,
|
|
43
|
+
"layerpro": true
|
|
44
|
+
},
|
|
45
|
+
"extends": [
|
|
46
|
+
"react-app"
|
|
47
|
+
]
|
|
48
|
+
},
|
|
49
|
+
"globals": {
|
|
50
|
+
"jQuery": {},
|
|
51
|
+
"$": {},
|
|
52
|
+
"dphelper": {},
|
|
53
|
+
"menupro": {},
|
|
54
|
+
"layerpro": {},
|
|
55
|
+
"_": {}
|
|
42
56
|
},
|
|
43
57
|
"author": {
|
|
44
58
|
"name": "Dario Passariello",
|
|
@@ -56,6 +70,8 @@
|
|
|
56
70
|
}
|
|
57
71
|
],
|
|
58
72
|
"keywords": [
|
|
73
|
+
"helper",
|
|
74
|
+
"dphelper",
|
|
59
75
|
"utils",
|
|
60
76
|
"tools",
|
|
61
77
|
"uuid",
|
|
@@ -65,6 +81,7 @@
|
|
|
65
81
|
"easy",
|
|
66
82
|
"pro",
|
|
67
83
|
"powerful",
|
|
84
|
+
"dario",
|
|
68
85
|
"passariello"
|
|
69
86
|
],
|
|
70
87
|
"license": "Apache-2.0",
|
|
@@ -87,52 +104,117 @@
|
|
|
87
104
|
"bugs": {
|
|
88
105
|
"url": "https://github.com/passariello/dpHelper/issues"
|
|
89
106
|
},
|
|
107
|
+
"workspaces": [
|
|
108
|
+
"mcp"
|
|
109
|
+
],
|
|
90
110
|
"files": [
|
|
91
|
-
"
|
|
92
|
-
"index.
|
|
93
|
-
"
|
|
94
|
-
"types/**/*.d.ts"
|
|
111
|
+
"scr",
|
|
112
|
+
"src/index.tsx",
|
|
113
|
+
"types/*.d.ts"
|
|
95
114
|
],
|
|
115
|
+
"browserslist": {
|
|
116
|
+
"production": [
|
|
117
|
+
"last 2 Chrome major versions",
|
|
118
|
+
"last 2 Firefox major versions",
|
|
119
|
+
"last 2 Safari major versions",
|
|
120
|
+
"last 2 Edge major versions",
|
|
121
|
+
"last 2 Opera versions",
|
|
122
|
+
"last 2 iOS major versions",
|
|
123
|
+
"last 1 Explorer major version",
|
|
124
|
+
"last 1 ChromeAndroid version",
|
|
125
|
+
"last 1 UCAndroid version",
|
|
126
|
+
"last 1 Samsung version",
|
|
127
|
+
"last 1 OperaMini version",
|
|
128
|
+
"Firefox ESR",
|
|
129
|
+
">0.2%",
|
|
130
|
+
"not dead",
|
|
131
|
+
"not op_mini all"
|
|
132
|
+
],
|
|
133
|
+
"development": [
|
|
134
|
+
"last 1 chrome version",
|
|
135
|
+
"last 1 firefox version",
|
|
136
|
+
"last 1 safari version"
|
|
137
|
+
]
|
|
138
|
+
},
|
|
139
|
+
"dependencies": {
|
|
140
|
+
"@babel/core": "7.20.12",
|
|
141
|
+
"@typescript-eslint/parser": "5.48.0",
|
|
142
|
+
"classnames": "2.3.2",
|
|
143
|
+
"concurrently": "7.6.0",
|
|
144
|
+
"crypto-js": "4.1.1",
|
|
145
|
+
"css": "3.0.0",
|
|
146
|
+
"jquery": "3.6.3",
|
|
147
|
+
"jsdom-worker": "0.3.0",
|
|
148
|
+
"moment": "2.29.4",
|
|
149
|
+
"path": "0.12.7",
|
|
150
|
+
"react": "18.2.0",
|
|
151
|
+
"react-app-polyfill": "^3.0.0",
|
|
152
|
+
"react-dom": "18.2.0",
|
|
153
|
+
"react-router": "^6.6.1",
|
|
154
|
+
"react-router-dom": "^6.6.1",
|
|
155
|
+
"typescript": "4.9.4"
|
|
156
|
+
},
|
|
96
157
|
"devDependencies": {
|
|
158
|
+
"@babel/cli": "7.20.7",
|
|
159
|
+
"@babel/core": "7.20.12",
|
|
160
|
+
"@babel/eslint-parser": "^7.19.1",
|
|
97
161
|
"@babel/plugin-proposal-class-properties": "7.18.6",
|
|
162
|
+
"@babel/plugin-transform-for-of": "^7.18.8",
|
|
163
|
+
"@babel/plugin-transform-react-jsx": "^7.20.7",
|
|
98
164
|
"@babel/plugin-transform-runtime": "7.19.6",
|
|
99
|
-
"@babel/preset-env": "7.
|
|
165
|
+
"@babel/preset-env": "7.20.2",
|
|
100
166
|
"@babel/preset-react": "7.18.6",
|
|
101
167
|
"@babel/preset-typescript": "7.18.6",
|
|
168
|
+
"@babel/runtime": "^7.20.7",
|
|
169
|
+
"@testing-library/react": "^13.4.0",
|
|
102
170
|
"@testing-library/user-event": "^14.4.3",
|
|
171
|
+
"@types/node": "18.11.18",
|
|
172
|
+
"@types/react": "^18.0.26",
|
|
173
|
+
"@types/react-dom": "^18.0.10",
|
|
174
|
+
"@types/react-redux": "^7.1.25",
|
|
175
|
+
"@types/redux": "^3.6.31",
|
|
103
176
|
"@types/webpack-env": "1.18.0",
|
|
104
|
-
"
|
|
105
|
-
"
|
|
177
|
+
"@typescript-eslint/eslint-plugin": "5.48.0",
|
|
178
|
+
"@typescript-eslint/parser": "5.48.0",
|
|
179
|
+
"babel-loader": "^9.1.2",
|
|
180
|
+
"babel-polyfill": "^6.26.0",
|
|
181
|
+
"babel-preset-es2015": "^6.24.1",
|
|
182
|
+
"babel-preset-stage-0": "^6.24.1",
|
|
183
|
+
"child_process": "^1.0.2",
|
|
106
184
|
"cli-confirm": "1.0.1",
|
|
107
|
-
"compression-webpack-plugin": "10.0.0",
|
|
108
|
-
"copy-webpack-plugin": "11.0.0",
|
|
109
|
-
"
|
|
110
|
-
"
|
|
111
|
-
"
|
|
112
|
-
"eslint
|
|
113
|
-
"eslint-
|
|
185
|
+
"compression-webpack-plugin": "^10.0.0",
|
|
186
|
+
"copy-webpack-plugin": "^11.0.0",
|
|
187
|
+
"cordova-android": "^11.0.0",
|
|
188
|
+
"css-loader": "^6.7.3",
|
|
189
|
+
"dotenv": "^16.0.3",
|
|
190
|
+
"eslint": "8.31.0",
|
|
191
|
+
"eslint-config-airbnb": "^19.0.4",
|
|
192
|
+
"eslint-import-resolver-webpack": "^0.13.2",
|
|
193
|
+
"eslint-plugin-import": "2.26.0",
|
|
194
|
+
"eslint-plugin-jsx-a11y": "^6.6.1",
|
|
195
|
+
"eslint-plugin-node": "^11.1.0",
|
|
196
|
+
"eslint-plugin-promise": "^6.1.1",
|
|
197
|
+
"eslint-plugin-react": "^7.31.11",
|
|
198
|
+
"eslint-plugin-react-app": "^6.2.2",
|
|
199
|
+
"eslint-plugin-react-hooks": "^4.6.0",
|
|
200
|
+
"eslint-plugin-unicorn": "45.0.2",
|
|
114
201
|
"file-loader": "6.2.0",
|
|
115
202
|
"fs": "0.0.1-security",
|
|
116
203
|
"html-webpack-plugin": "5.5.0",
|
|
204
|
+
"jshint": "^2.13.6",
|
|
205
|
+
"less": "^4.1.3",
|
|
206
|
+
"less-loader": "^11.1.0",
|
|
117
207
|
"lint": "1.1.2",
|
|
208
|
+
"npm-check-updates": "^16.6.2",
|
|
209
|
+
"path": "^0.12.7",
|
|
118
210
|
"progress-bar-webpack-plugin": "2.1.0",
|
|
119
|
-
"
|
|
120
|
-
"
|
|
121
|
-
"
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
"
|
|
125
|
-
"
|
|
126
|
-
"
|
|
127
|
-
"concurrently": "7.5.0",
|
|
128
|
-
"css": "3.0.0",
|
|
129
|
-
"eslint-plugin-import": "2.26.0",
|
|
130
|
-
"jquery": "3.6.1",
|
|
131
|
-
"jsdom-worker": "0.3.0",
|
|
132
|
-
"moment": "2.29.4",
|
|
133
|
-
"path": "0.12.7",
|
|
134
|
-
"react": "18.2.0",
|
|
135
|
-
"react-dom": "18.2.0",
|
|
136
|
-
"typescript": "4.8.4"
|
|
211
|
+
"sass": "^1.57.1",
|
|
212
|
+
"sass-loader": "^13.2.0",
|
|
213
|
+
"style-loader": "^3.3.1",
|
|
214
|
+
"terser-webpack-plugin": "^5.3.6",
|
|
215
|
+
"ts-loader": "^9.4.2",
|
|
216
|
+
"webpack": "^5.75.0",
|
|
217
|
+
"webpack-cli": "^5.0.1",
|
|
218
|
+
"webpack-dev-server": "^4.11.1"
|
|
137
219
|
}
|
|
138
220
|
}
|