@gasket/plugin-nextjs
Version:
Adds Next support to your application
150 lines • 3.64 kB
JSON
{
"name": "@gasket/plugin-nextjs",
"version": "7.5.6",
"description": "Adds Next support to your application",
"types": "lib/index.d.ts",
"files": [
"generator",
"docs",
"lib"
],
"exports": {
".": "./lib/index.js",
"./prompts": "./lib/prompt.js",
"./package.json": "./package.json"
},
"repository": "godaddy/gasket.git",
"publishConfig": {
"access": "public"
},
"keywords": [
"gasket",
"next",
"nextjs",
"plugin"
],
"author": "GoDaddy Operating Company, LLC",
"license": "MIT",
"bugs": "https://github.com/godaddy/gasket/issues",
"homepage": "https://github.com/godaddy/gasket/tree/main/packages/gasket-plugin-nextjs",
"dependencies": {
"fastify": "^4.29.1",
"@gasket/plugin-webpack": "^7.3.5"
},
"devDependencies": {
"@babel/preset-react": "^7.26.3",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.19",
"@types/react": "^19.0.12",
"@types/webpack": "^5.28.5",
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"eslint-config-godaddy": "^7.1.1",
"eslint-config-godaddy-react": "^9.1.0",
"eslint-config-godaddy-typescript": "^4.0.3",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-unicorn": "^55.0.0",
"jest": "^29.7.0",
"lodash.merge": "^4.6.2",
"next": "^15.2.5",
"nodemon": "^3.1.9",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"typescript": "^5.8.2",
"@gasket/assets": "^7.4.1",
"@gasket/core": "^7.5.2",
"@gasket/intl": "^7.4.0",
"@gasket/nextjs": "^7.5.3",
"@gasket/plugin-elastic-apm": "^7.4.3",
"@gasket/plugin-express": "^7.4.1",
"@gasket/plugin-fastify": "^7.4.3",
"@gasket/plugin-https": "^7.3.8",
"@gasket/plugin-intl": "^7.5.3",
"@gasket/plugin-logger": "^7.3.5",
"@gasket/plugin-metadata": "^7.4.4",
"@gasket/plugin-nextjs": "^7.5.6",
"@gasket/plugin-service-worker": "^7.4.4",
"@gasket/plugin-workbox": "^7.3.5",
"@gasket/request": "^7.4.3",
"create-gasket-app": "^7.4.6"
},
"peerDependencies": {
"@gasket/plugin-webpack": "^7.3.5",
"react": ">=18 <20",
"react-dom": ">=18 <20"
},
"eslintConfig": {
"extends": [
"godaddy",
"plugin:jest/recommended",
"plugin:jsdoc/recommended"
],
"globals": {
"expect": "readonly"
},
"plugins": [
"unicorn",
"jsdoc"
],
"rules": {
"unicorn/filename-case": "error",
"jsdoc/valid-types": "off"
},
"overrides": [
{
"files": [
"generator/**/*.js"
],
"extends": [
"godaddy-react"
]
},
{
"files": [
"lib/**/*.js"
],
"extends": [
"plugin:jsdoc/recommended-typescript-flavor"
],
"rules": {
"jsdoc/valid-types": "off"
}
},
{
"files": [
"lib/*.ts"
],
"extends": [
"godaddy-typescript"
],
"rules": {
"jsdoc/*": "off"
}
}
]
},
"eslintIgnore": [
"generator",
"*.d.ts"
],
"babel": {
"presets": [
"@babel/preset-react"
]
},
"jest": {
"rootDir": "test"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "pnpm run lint --fix",
"posttest": "pnpm run lint && pnpm run typecheck",
"test": "cross-env NODE_OPTIONS='--unhandled-rejections=strict' jest",
"test:coverage": "pnpm run test --coverage",
"test:watch": "pnpm run test --watch",
"typecheck": "tsc",
"typecheck:watch": "tsc --watch"
}
}