mirror of
https://github.com/strapi/strapi.git
synced 2025-06-27 00:41:25 +00:00

chore: fetch template only if name matches name convention chore: linting chore: fix tests chore: fix npm scripts test: try to fix test
114 lines
3.5 KiB
JSON
114 lines
3.5 KiB
JSON
{
|
|
"name": "@strapi/content-releases",
|
|
"version": "5.8.1",
|
|
"description": "Strapi plugin for organizing and releasing content",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/strapi/strapi.git"
|
|
},
|
|
"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"
|
|
}
|
|
],
|
|
"exports": {
|
|
"./strapi-admin": {
|
|
"types": "./dist/admin/src/index.d.ts",
|
|
"source": "./admin/src/index.ts",
|
|
"import": "./dist/admin/index.mjs",
|
|
"require": "./dist/admin/index.js",
|
|
"default": "./dist/admin/index.js"
|
|
},
|
|
"./strapi-server": {
|
|
"types": "./dist/server/src/index.d.ts",
|
|
"source": "./server/src/index.ts",
|
|
"import": "./dist/server/index.mjs",
|
|
"require": "./dist/server/index.js",
|
|
"default": "./dist/server/index.js"
|
|
},
|
|
"./package.json": "./package.json"
|
|
},
|
|
"files": [
|
|
"dist/",
|
|
"strapi-server.js"
|
|
],
|
|
"scripts": {
|
|
"build": "run -T npm-run-all clean --parallel build:code build:types",
|
|
"build:code": "run -T rollup -c",
|
|
"build:types": "run -T run-p build:types:server build:types:admin",
|
|
"build:types:server": "run -T tsc -p server/tsconfig.build.json --emitDeclarationOnly",
|
|
"build:types:admin": "run -T tsc -p admin/tsconfig.build.json --emitDeclarationOnly",
|
|
"clean": "run -T rimraf ./dist",
|
|
"lint": "run -T eslint .",
|
|
"test:front": "run -T cross-env IS_EE=true jest --config ./jest.config.front.js",
|
|
"test:front:ce": "run -T cross-env IS_EE=false jest --config ./jest.config.front.js",
|
|
"test:front:watch": "run -T cross-env IS_EE=true jest --config ./jest.config.front.js --watchAll",
|
|
"test:front:watch:ce": "run -T cross-env IS_EE=false jest --config ./jest.config.front.js --watchAll",
|
|
"test:ts:front": "run -T tsc -p admin/tsconfig.json",
|
|
"test:unit": "run -T jest",
|
|
"test:unit:watch": "run -T jest --watch",
|
|
"watch": "run -T rollup -c -w"
|
|
},
|
|
"dependencies": {
|
|
"@reduxjs/toolkit": "1.9.7",
|
|
"@strapi/database": "5.8.1",
|
|
"@strapi/design-system": "2.0.0-rc.14",
|
|
"@strapi/icons": "2.0.0-rc.14",
|
|
"@strapi/types": "5.8.1",
|
|
"@strapi/utils": "5.8.1",
|
|
"date-fns": "2.30.0",
|
|
"date-fns-tz": "2.0.1",
|
|
"formik": "2.4.5",
|
|
"lodash": "4.17.21",
|
|
"node-schedule": "2.1.1",
|
|
"qs": "6.11.1",
|
|
"react-intl": "6.6.2",
|
|
"react-redux": "8.1.3",
|
|
"yup": "0.32.9"
|
|
},
|
|
"devDependencies": {
|
|
"@strapi/admin": "5.8.1",
|
|
"@strapi/admin-test-utils": "5.8.1",
|
|
"@strapi/content-manager": "5.8.1",
|
|
"@testing-library/dom": "10.1.0",
|
|
"@testing-library/react": "15.0.7",
|
|
"@testing-library/user-event": "14.5.2",
|
|
"@types/koa": "2.13.4",
|
|
"koa": "2.15.2",
|
|
"msw": "1.3.0",
|
|
"react": "18.3.1",
|
|
"react-dom": "18.3.1",
|
|
"react-query": "3.39.3",
|
|
"react-router-dom": "6.22.3",
|
|
"styled-components": "6.1.8",
|
|
"typescript": "5.4.4"
|
|
},
|
|
"peerDependencies": {
|
|
"@strapi/admin": "^5.0.0",
|
|
"@strapi/content-manager": "^5.0.0",
|
|
"react": "^17.0.0 || ^18.0.0",
|
|
"react-dom": "^17.0.0 || ^18.0.0",
|
|
"react-router-dom": "^6.0.0",
|
|
"styled-components": "^6.0.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0 <=22.x.x",
|
|
"npm": ">=6.0.0"
|
|
},
|
|
"strapi": {
|
|
"name": "content-releases",
|
|
"description": "Organize and release content",
|
|
"kind": "plugin",
|
|
"displayName": "Releases",
|
|
"required": true
|
|
}
|
|
}
|