2023-03-22 11:21:33 +01:00

106 lines
2.8 KiB
JSON

{
"name": "@strapi/helper-plugin",
"version": "4.8.2",
"description": "Helper for Strapi plugins development",
"repository": {
"type": "git",
"url": "https://github.com/strapi/strapi.git",
"directory": "packages/core/helper-plugin"
},
"license": "SEE LICENSE IN LICENSE",
"author": {
"name": "Strapi Solutions SAS",
"email": "hi@strapi.io",
"url": "https://strapi.io"
},
"maintainers": [
{
"name": "Strapi Solutions SAS",
"email": "hi@strapi.io",
"url": "https://strapi.io"
}
],
"main": "build/helper-plugin.js",
"module": "build/helper-plugin.esm.js",
"exports": {
".": {
"require": "./build/helper-plugin.js",
"import": "./build/helper-plugin.esm.js"
}
},
"files": [
"build"
],
"scripts": {
"prebuild": "rimraf build",
"build": "cross-env NODE_ENV=production webpack-cli",
"build-storybook": "build-storybook",
"prepublishOnly": "npm run build",
"storybook": "start-storybook -p 6006",
"test:front": "jest --config ./jest.config.front.js",
"test:front:cov": "jest --config ./jest.config.front.js --coverage",
"test:front:watch": "jest --config ./jest.config.front.js --watchAll",
"watch": "cross-env NODE_ENV=development webpack-cli -w",
"lint": "eslint ."
},
"dependencies": {
"axios": "1.3.4",
"date-fns": "2.29.3",
"formik": "^2.2.6",
"immer": "9.0.19",
"lodash": "4.17.21",
"prop-types": "^15.7.2",
"qs": "6.11.0",
"react-helmet": "^6.1.0",
"react-intl": "6.3.2",
"react-select": "5.7.0"
},
"devDependencies": {
"@storybook/addon-actions": "6.5.10",
"@storybook/addon-essentials": "6.5.10",
"@storybook/addon-links": "6.5.10",
"@storybook/builder-webpack5": "6.5.15",
"@storybook/manager-webpack5": "6.5.15",
"@storybook/react": "^6.5.16",
"@strapi/design-system": "1.6.6",
"@strapi/icons": "1.6.6",
"@testing-library/react": "12.1.4",
"@testing-library/react-hooks": "8.0.1",
"browserslist-to-esbuild": "1.2.0",
"cross-env": "^7.0.3",
"esbuild-loader": "^2.21.0",
"history": "^4.9.0",
"match-sorter": "^4.0.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "5.3.4",
"react-test-renderer": "^17.0.2",
"rimraf": "3.0.2",
"styled-components": "5.3.3",
"typescript": "4.6.2",
"webpack": "^5.76.0",
"webpack-cli": "^5.0.1"
},
"peerDependencies": {
"@strapi/design-system": "1.6.6",
"@strapi/icons": "1.6.6",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "5.3.4",
"styled-components": "5.3.3"
},
"engines": {
"node": ">=14.19.1 <=18.x.x",
"npm": ">=6.0.0"
},
"nx": {
"targets": {
"build": {
"outputs": [
"./build"
]
}
}
}
}