mirror of
https://github.com/strapi/strapi.git
synced 2025-11-09 14:51:29 +00:00
Remove unused dependencies
This commit is contained in:
parent
d2e523d942
commit
086a80eb28
@ -34,7 +34,7 @@
|
|||||||
"jest-circus": "26.6.3",
|
"jest-circus": "26.6.3",
|
||||||
"jest-cli": "^26.0.1",
|
"jest-cli": "^26.0.1",
|
||||||
"jest-styled-components": "^7.0.2",
|
"jest-styled-components": "^7.0.2",
|
||||||
"lerna": "^3.13.1",
|
"lerna": "4.0.0",
|
||||||
"lint-staged": "^10.5.4",
|
"lint-staged": "^10.5.4",
|
||||||
"lodash": "4.17.21",
|
"lodash": "4.17.21",
|
||||||
"npm-run-all": "^4.1.5",
|
"npm-run-all": "^4.1.5",
|
||||||
@ -51,7 +51,6 @@
|
|||||||
"stylelint-config-styled-components": "0.1.1",
|
"stylelint-config-styled-components": "0.1.1",
|
||||||
"stylelint-processor-styled-components": "1.10.0",
|
"stylelint-processor-styled-components": "1.10.0",
|
||||||
"supertest": "5.0.0",
|
"supertest": "5.0.0",
|
||||||
"wait-on": "^3.2.0",
|
|
||||||
"yargs": "^13.2.2"
|
"yargs": "^13.2.2"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
@ -16,7 +16,6 @@
|
|||||||
"create-strapi-app": "./index.js"
|
"create-strapi-app": "./index.js"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"chalk": "4.1.1",
|
|
||||||
"commander": "6.1.0",
|
"commander": "6.1.0",
|
||||||
"inquirer": "8.1.0",
|
"inquirer": "8.1.0",
|
||||||
"js-yaml": "4.1.0",
|
"js-yaml": "4.1.0",
|
||||||
|
|||||||
@ -27,7 +27,7 @@
|
|||||||
"node-fetch": "^2.6.1",
|
"node-fetch": "^2.6.1",
|
||||||
"ora": "5.4.0",
|
"ora": "5.4.0",
|
||||||
"@strapi/generate-new": "3.6.8",
|
"@strapi/generate-new": "3.6.8",
|
||||||
"tar": "6.1.4"
|
"tar": "6.1.11"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "echo \"no tests yet\""
|
"test": "echo \"no tests yet\""
|
||||||
|
|||||||
@ -12,11 +12,9 @@
|
|||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@sindresorhus/slugify": "1.1.0",
|
"@sindresorhus/slugify": "1.1.0",
|
||||||
"@strapi/helper-plugin": "3.6.8",
|
|
||||||
"@strapi/utils": "3.6.8",
|
"@strapi/utils": "3.6.8",
|
||||||
"lodash": "4.17.21",
|
"lodash": "4.17.21",
|
||||||
"pluralize": "^8.0.0",
|
"pluralize": "^8.0.0"
|
||||||
"yup": "^0.32.9"
|
|
||||||
},
|
},
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Strapi team",
|
"name": "Strapi team",
|
||||||
|
|||||||
@ -34,8 +34,5 @@
|
|||||||
"knex": "0.95.6",
|
"knex": "0.95.6",
|
||||||
"lodash": "4.17.21",
|
"lodash": "4.17.21",
|
||||||
"umzug": "2.3.0"
|
"umzug": "2.3.0"
|
||||||
},
|
|
||||||
"devDependencies": {
|
|
||||||
"sqlite3": "5.0.2"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -15,8 +15,7 @@
|
|||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"lodash": "4.17.21",
|
"lodash": "4.17.21",
|
||||||
"@strapi/provider-email-sendmail": "3.6.8",
|
"@strapi/provider-email-sendmail": "3.6.8"
|
||||||
"@strapi/utils": "3.6.8"
|
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@strapi/helper-plugin": "3.6.8"
|
"@strapi/helper-plugin": "3.6.8"
|
||||||
|
|||||||
@ -67,6 +67,7 @@ const createUpdateNotifier = strapi => {
|
|||||||
const now = Date.now();
|
const now = Date.now();
|
||||||
const latestVersion = config.get('latest');
|
const latestVersion = config.get('latest');
|
||||||
const lastNotification = config.get('lastNotification') || 0;
|
const lastNotification = config.get('lastNotification') || 0;
|
||||||
|
|
||||||
if (
|
if (
|
||||||
!process.stdout.isTTY ||
|
!process.stdout.isTTY ||
|
||||||
lastNotification + notifInterval > now ||
|
lastNotification + notifInterval > now ||
|
||||||
|
|||||||
@ -90,7 +90,7 @@
|
|||||||
"@strapi/plugin-email": "3.6.8",
|
"@strapi/plugin-email": "3.6.8",
|
||||||
"@strapi/plugin-upload": "3.6.8",
|
"@strapi/plugin-upload": "3.6.8",
|
||||||
"@strapi/utils": "3.6.8",
|
"@strapi/utils": "3.6.8",
|
||||||
"boxen": "4.2.0",
|
"boxen": "5.1.2",
|
||||||
"chalk": "4.1.2",
|
"chalk": "4.1.2",
|
||||||
"chokidar": "3.5.2",
|
"chokidar": "3.5.2",
|
||||||
"ci-info": "3.2.0",
|
"ci-info": "3.2.0",
|
||||||
|
|||||||
@ -17,14 +17,12 @@
|
|||||||
"@strapi/helper-plugin": "3.6.8",
|
"@strapi/helper-plugin": "3.6.8",
|
||||||
"@strapi/provider-upload-local": "3.6.8",
|
"@strapi/provider-upload-local": "3.6.8",
|
||||||
"@strapi/utils": "3.6.8",
|
"@strapi/utils": "3.6.8",
|
||||||
"byte-size": "^7.0.1",
|
"byte-size": "7.0.1",
|
||||||
"cropperjs": "^1.5.11",
|
"cropperjs": "1.5.11",
|
||||||
"immer": "9.0.5",
|
"immer": "9.0.5",
|
||||||
"is-valid-domain": "0.0.17",
|
|
||||||
"koa-range": "0.3.0",
|
"koa-range": "0.3.0",
|
||||||
"koa-static": "^5.0.0",
|
"koa-static": "5.0.0",
|
||||||
"lodash": "4.17.21",
|
"lodash": "4.17.21",
|
||||||
"node-fetch": "2.6.1",
|
|
||||||
"react": "^17.0.2",
|
"react": "^17.0.2",
|
||||||
"react-copy-to-clipboard": "^5.0.3",
|
"react-copy-to-clipboard": "^5.0.3",
|
||||||
"react-dom": "^17.0.2",
|
"react-dom": "^17.0.2",
|
||||||
@ -33,9 +31,7 @@
|
|||||||
"react-router": "^5.2.0",
|
"react-router": "^5.2.0",
|
||||||
"react-router-dom": "^5.0.0",
|
"react-router-dom": "^5.0.0",
|
||||||
"reactstrap": "8.4.1",
|
"reactstrap": "8.4.1",
|
||||||
"sharp": "0.28.1",
|
"sharp": "0.28.1"
|
||||||
"stream-to-array": "^2.3.0",
|
|
||||||
"uuid": "^3.2.1"
|
|
||||||
},
|
},
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Strapi team",
|
"name": "Strapi team",
|
||||||
|
|||||||
@ -23,7 +23,7 @@
|
|||||||
"node-fetch": "^2.6.1",
|
"node-fetch": "^2.6.1",
|
||||||
"node-machine-id": "^1.1.10",
|
"node-machine-id": "^1.1.10",
|
||||||
"ora": "^5.4.0",
|
"ora": "^5.4.0",
|
||||||
"tar": "6.1.4",
|
"tar": "6.1.11",
|
||||||
"uuid": "^3.3.2"
|
"uuid": "^3.3.2"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
@ -11,10 +11,8 @@
|
|||||||
"kind": "plugin"
|
"kind": "plugin"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"lodash": "4.17.20",
|
"@strapi/utils": "3.6.8",
|
||||||
"p-map": "4.0.0",
|
"lodash": "4.17.21"
|
||||||
"pluralize": "8.0.0",
|
|
||||||
"@strapi/utils": "3.6.8"
|
|
||||||
},
|
},
|
||||||
"author": {
|
"author": {
|
||||||
"name": "A Strapi developer",
|
"name": "A Strapi developer",
|
||||||
|
|||||||
@ -13,7 +13,7 @@
|
|||||||
},
|
},
|
||||||
"main": "./lib",
|
"main": "./lib",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@sendgrid/mail": "6.4.0",
|
"@sendgrid/mail": "7.4.7",
|
||||||
"@strapi/utils": "3.6.8"
|
"@strapi/utils": "3.6.8"
|
||||||
},
|
},
|
||||||
"strapi": {
|
"strapi": {
|
||||||
|
|||||||
@ -10,8 +10,8 @@
|
|||||||
"test": "echo \"no tests yet\""
|
"test": "echo \"no tests yet\""
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"pkgcloud": "^2.0.0",
|
"pkgcloud": "2.2.0",
|
||||||
"streamifier": "^0.1.1"
|
"streamifier": "0.1.1"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=12.x.x <=16.x.x",
|
"node": ">=12.x.x <=16.x.x",
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user