2023-01-30 11:19:55 +01:00

96 lines
2.7 KiB
JSON

{
"name": "@strapi/helper-plugin",
"version": "4.6.0",
"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/index.js",
"files": [
"build"
],
"scripts": {
"prebuild": "rimraf build",
"build": "yarn build:development && yarn build:production && yarn create:index",
"build-storybook": "build-storybook",
"build:development": "cross-env NODE_ENV=development webpack-cli",
"build:production": "cross-env NODE_ENV=production webpack-cli",
"create:index": "node ./createBuildIndex.js",
"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": "yarn create:index && cross-env NODE_ENV=development webpack-cli -w"
},
"dependencies": {
"axios": "1.2.2",
"date-fns": "2.29.3",
"formik": "^2.2.6",
"immer": "9.0.6",
"invariant": "^2.2.1",
"lodash": "4.17.21",
"match-sorter": "^4.0.2",
"qs": "6.11.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-intl": "6.2.7",
"react-router": "^5.2.0",
"react-router-dom": "5.3.4",
"react-select": "5.6.0",
"styled-components": "5.3.3",
"whatwg-fetch": "^3.6.2"
},
"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.10",
"@strapi/design-system": "1.6.1",
"@strapi/icons": "1.6.1",
"@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.20.0",
"react-test-renderer": "^17.0.2",
"require-from-string": "2.0.2",
"rimraf": "3.0.2",
"typescript": "4.6.2"
},
"engines": {
"node": ">=14.19.1 <=18.x.x",
"npm": ">=6.0.0"
},
"nx": {
"targets": {
"build": {
"outputs": [
"./build"
]
}
}
},
"peerDependencies": {
"webpack": "^5.75.0"
}
}