Make marked and diacritic dependencies and not dev dependencies (#2504)
They are actual dependencies for Main UI's code, therefore they should not be dev but main dependencies. Signed-off-by: Florian Hotze <florianh_dev@icloud.com>pull/2507/head
parent
576142fe0a
commit
abdffc62d2
|
@ -23,6 +23,7 @@
|
|||
"cronstrue": "^2.48.0",
|
||||
"crypto-browserify": "^3.12.0",
|
||||
"dayjs": "^1.11.10",
|
||||
"diacritic": "^0.0.2",
|
||||
"dom7": "^2.1.5",
|
||||
"echarts": "^5.5.0",
|
||||
"event-source-polyfill": "^1.0.22",
|
||||
|
@ -35,6 +36,7 @@
|
|||
"leaflet": "^1.9.4",
|
||||
"leaflet-providers": "^2.0.0",
|
||||
"lodash": "^4.17.21",
|
||||
"marked": "^12.0.1",
|
||||
"moo": "^0.5.2",
|
||||
"nearley": "^2.20.1",
|
||||
"path-browserify": "^1.0.1",
|
||||
|
@ -88,7 +90,6 @@
|
|||
"css-loader": "^6.10.0",
|
||||
"css-minimizer-webpack-plugin": "^6.0.0",
|
||||
"cypress": "^3.8.3",
|
||||
"diacritic": "0.0.2",
|
||||
"eslint": "^8.57.0",
|
||||
"eslint-plugin-cypress": "^2.15.1",
|
||||
"eslint-plugin-es": "^4.1.0",
|
||||
|
@ -103,7 +104,6 @@
|
|||
"jest-serializer-vue": "^3.1.0",
|
||||
"jest-transform-nearley": "^2.0.0",
|
||||
"jest-transform-stub": "^2.0.0",
|
||||
"marked": "^12.0.1",
|
||||
"mini-css-extract-plugin": "^2.8.1",
|
||||
"nearley-loader": "^2.0.0",
|
||||
"ora": "^5.4.1",
|
||||
|
@ -8412,8 +8412,7 @@
|
|||
"node_modules/diacritic": {
|
||||
"version": "0.0.2",
|
||||
"resolved": "https://registry.npmjs.org/diacritic/-/diacritic-0.0.2.tgz",
|
||||
"integrity": "sha1-/CqIe1pbwKCoVPthTHwvIJBh7gQ=",
|
||||
"dev": true
|
||||
"integrity": "sha512-iQCeDkSPwkfwWPr+HZZ49WRrM2FSI9097Q9w7agyRCdLcF9Eh2Ek0sHKcmMWx2oZVBjRBE/sziGFjZu0uf1Jbg=="
|
||||
},
|
||||
"node_modules/diff-match-patch": {
|
||||
"version": "1.0.4",
|
||||
|
@ -14891,7 +14890,6 @@
|
|||
"version": "12.0.1",
|
||||
"resolved": "https://registry.npmjs.org/marked/-/marked-12.0.1.tgz",
|
||||
"integrity": "sha512-Y1/V2yafOcOdWQCX0XpAKXzDakPOpn6U0YLxTJs3cww6VxOzZV1BTOOYWLvH3gX38cq+iLwljHHTnMtlDfg01Q==",
|
||||
"dev": true,
|
||||
"bin": {
|
||||
"marked": "bin/marked.js"
|
||||
},
|
||||
|
@ -27800,8 +27798,7 @@
|
|||
"diacritic": {
|
||||
"version": "0.0.2",
|
||||
"resolved": "https://registry.npmjs.org/diacritic/-/diacritic-0.0.2.tgz",
|
||||
"integrity": "sha1-/CqIe1pbwKCoVPthTHwvIJBh7gQ=",
|
||||
"dev": true
|
||||
"integrity": "sha512-iQCeDkSPwkfwWPr+HZZ49WRrM2FSI9097Q9w7agyRCdLcF9Eh2Ek0sHKcmMWx2oZVBjRBE/sziGFjZu0uf1Jbg=="
|
||||
},
|
||||
"diff-match-patch": {
|
||||
"version": "1.0.4",
|
||||
|
@ -32681,8 +32678,7 @@
|
|||
"marked": {
|
||||
"version": "12.0.1",
|
||||
"resolved": "https://registry.npmjs.org/marked/-/marked-12.0.1.tgz",
|
||||
"integrity": "sha512-Y1/V2yafOcOdWQCX0XpAKXzDakPOpn6U0YLxTJs3cww6VxOzZV1BTOOYWLvH3gX38cq+iLwljHHTnMtlDfg01Q==",
|
||||
"dev": true
|
||||
"integrity": "sha512-Y1/V2yafOcOdWQCX0XpAKXzDakPOpn6U0YLxTJs3cww6VxOzZV1BTOOYWLvH3gX38cq+iLwljHHTnMtlDfg01Q=="
|
||||
},
|
||||
"md5.js": {
|
||||
"version": "1.3.5",
|
||||
|
|
|
@ -61,6 +61,7 @@
|
|||
"cronstrue": "^2.48.0",
|
||||
"crypto-browserify": "^3.12.0",
|
||||
"dayjs": "^1.11.10",
|
||||
"diacritic": "^0.0.2",
|
||||
"dom7": "^2.1.5",
|
||||
"echarts": "^5.5.0",
|
||||
"event-source-polyfill": "^1.0.22",
|
||||
|
@ -73,6 +74,7 @@
|
|||
"leaflet": "^1.9.4",
|
||||
"leaflet-providers": "^2.0.0",
|
||||
"lodash": "^4.17.21",
|
||||
"marked": "^12.0.1",
|
||||
"moo": "^0.5.2",
|
||||
"nearley": "^2.20.1",
|
||||
"path-browserify": "^1.0.1",
|
||||
|
@ -126,7 +128,6 @@
|
|||
"css-loader": "^6.10.0",
|
||||
"css-minimizer-webpack-plugin": "^6.0.0",
|
||||
"cypress": "^3.8.3",
|
||||
"diacritic": "0.0.2",
|
||||
"eslint": "^8.57.0",
|
||||
"eslint-plugin-cypress": "^2.15.1",
|
||||
"eslint-plugin-es": "^4.1.0",
|
||||
|
@ -141,7 +142,6 @@
|
|||
"jest-serializer-vue": "^3.1.0",
|
||||
"jest-transform-nearley": "^2.0.0",
|
||||
"jest-transform-stub": "^2.0.0",
|
||||
"marked": "^12.0.1",
|
||||
"mini-css-extract-plugin": "^2.8.1",
|
||||
"nearley-loader": "^2.0.0",
|
||||
"ora": "^5.4.1",
|
||||
|
|
Loading…
Reference in New Issue